O
ommail
Hi!
I have a simple regural expression:
\w+$
and text to match:
abc dddd
ggg
hhh
It should match three times:
dddd
ggg
hhh
but it only match once (for hhh).
Why? I USE multiline option so $ should match end of each line.
(I checked it in Python and Java and in these languages it worked
correctly).
Are there any other odd things in .NET Regex?
Regards
I have a simple regural expression:
\w+$
and text to match:
abc dddd
ggg
hhh
It should match three times:
dddd
ggg
hhh
but it only match once (for hhh).
Why? I USE multiline option so $ should match end of each line.
(I checked it in Python and Java and in these languages it worked
correctly).
Are there any other odd things in .NET Regex?
Regards