Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: move down 2 lines in file?

by bibliophile (Prior)
on Jul 14, 2008 at 15:52 UTC ( [id://697507]=note: print w/replies, xml ) Need Help??


in reply to Re: move down 2 lines in file?
in thread move down 2 lines in file?

Also, if you don't know how many lines to skip but you *do* know what the first line-of-interest starts with, you can say something like (untested):
my $good_start = 0; while (<FILE>) { next unless (($good_start) || (/^start-of-data pattern/); $good_start = 1; # do things with the interesting lines }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-16 21:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found