E
Efi
Hello,
I am trying to capture empty lines, for example :
1. ABCDEF
2.
3. abcdef
I would like to capture line number 2.
I am using the following regex - new
Regex("^$",RegexOptions.Multiline);
RegexBuddy captures the empty lines correctly why doesn't the regex
engine of .net manages to capture it ?
Thank you,
Efi
I am trying to capture empty lines, for example :
1. ABCDEF
2.
3. abcdef
I would like to capture line number 2.
I am using the following regex - new
Regex("^$",RegexOptions.Multiline);
RegexBuddy captures the empty lines correctly why doesn't the regex
engine of .net manages to capture it ?
Thank you,
Efi