Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^2: search for blank lines by RegEx

by Aragorn (Curate)
on Sep 07, 2004 at 09:02 UTC ( [id://388970]=note: print w/replies, xml ) Need Help??


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

For processing a huge file, this is a lot more (memory-) efficient than trying to load the complete file into memory. So I don't think this is a bad way to do it.

Arjen

Replies are listed 'Best First'.
Re^3: search for blank lines by RegEx [!]
by Anonymous Monk on Sep 07, 2004 at 10:47 UTC
    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'

      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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://388970]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (8)
As of 2024-04-23 13:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found