Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Read from a file one line at a time?

by bitingduck (Chaplain)
on Feb 20, 2012 at 17:29 UTC ( [id://955111]=note: print w/replies, xml ) Need Help??


in reply to Read from a file one line at a time?

Assuming you've already opened the filehandle FILE you can read all the lines into a list with

my @lines=<File>;

or read one line at a time with

while (<FILE>){ my $line=$_; }

there are more compact ways to do the latter, as well.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-03-19 08:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found