I have a measure device that creates samples in the following format:
V GL020(1)=20110117161703
another example:
V GLXX011(10)=ADEF=*GFSDAS
What I'm trying to do is to create a regex expression that returns
GL020 / 1 / 20110117161703 for the first example and
GLXX011 / 10 / ADEF=*GFSDAS for the second example.
I found a regex expression that reliably matches the fist two required parts:
.*?(?<Field>(?:[a-z][a-z]*[0-9]+[a-z0-9]*)).*?(?<Count>\d+)
However, i'm still missing the part after the first "=". I don't know if it is important but the part after the first "=" might include characters like "=" itself.
V) and replace(and)=with ` / ` (and if it matters, just their first occurrences)?