Quote from sutupudMar 14, 2013 - 01:29:32
i see two problems whith your regex:
- you have two groups. one should be enough...
- how do you start a non-capturing group? hint: it's not ?=
capturing is done using capturing groups. that means if a string matches the pattern, then parts of that string can be captured using capturing groups...