in reply to (jeffa) Re: another problem with the blank line regex
in thread another problem with the blank line regex

i don't do DOS

Why not?
$lines =~ tr/\r//d; $lines =~ tr/\n//s; # or this? $lines =~ tr/\r?\n//s;
I don't know how DOS newlines look, but wouldn't "\n\n" be "\r\n\r\n"?

-xtype