in reply to (jeffa) Re: another problem with the blank line regex
in thread another problem with the blank line regex
I don't know how DOS newlines look, but wouldn't "\n\n" be "\r\n\r\n"?$lines =~ tr/\r//d; $lines =~ tr/\n//s; # or this? $lines =~ tr/\r?\n//s;
|
|---|