.NET Regex - need matching string for parsing...
- by TomTom
Hello,
I am a regex idiot and never found a good tutorial (links welcome, as well as a pointer to an interactive VS2010 integrated editor).
I need to parse strings in the following form:
[a/b]:c/d
a, b: double with "." as possible separator. CAN be empty
c: double with "." as separator
d: integer, positive
I.e. valid strings are:
[/]:0.25/2
[-0.5/0.5]:0.05/2
[/0.1]:0.05/2
;) Anyone can help?
Thanks