Hi,
I prefer to use Perl style regular expressions, however a simple regex that I used prior the Boost regex library was to search for blank lines.
Here is the search string when using Unix style (not Perl style):
"^\p"
Here is the UE regex style (from the FAQ):
"^p$"
Here is what I thought the Perl style should be:
"^\n"
But that doesn't work. I get a "Search string not found." message.
I have also tried with no success:
"\n\n"
"\n$"
"^\n$"
I have read the Boost documentation here:
http://www.boost.org/libs/regex/doc/syntax_perl.html
But I can't figure out what the syntax should be. Can anyone help?
Thanks!
Glen

