in reply to Re^2: search for blank lines by RegEx
in thread search for blank lines by RegEx

The question asked for a regex solution. If you want to deviate and use a loop, there's no need to use a couple of regexes inside the loop. Something like (untested):
perl -lne 'die "Line ", $.-2, "\n" if ($e = length() ? 0 : $e+1) == 2'

Replies are listed 'Best First'.
Re^4: search for blank lines by RegEx [!]
by robharper (Pilgrim) on Sep 07, 2004 at 15:41 UTC

    Fair point about being faithful to the question -- and thanks for the alternate approach (above my head at the moment, but I'll crack out the documentation to find out...), but I do remember reading somewhere or other about asking questions in ways that don't prejudice the answers.

    Still, this was an interesting question for the level of experience I have in Perl.