Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Forcing array context on a file handle

by fishmonger (Chaplain)
on Oct 30, 2012 at 21:11 UTC ( [id://1001557]=note: print w/replies, xml ) Need Help??


in reply to Forcing array context on a file handle

Did you check perldoc? This is a FAQ

perldoc -q "How do I count the number of lines in a file"

  • Comment on Re: Forcing array context on a file handle

Replies are listed 'Best First'.
Re^2: Forcing array context on a file handle
by perl_walker (Novice) on Oct 31, 2012 at 07:15 UTC

    Hi, ronmrdechai

    $lines = grep {$_} <$file>;
      That works for files in the default case, because every line will have a newline or somesuch, and will not be an empty string. For counting, map would be more appropriate than grep. But tobyink showed the idiom above:
      my $lines =()= <$file>;

      -QM
      --
      Quantum Mechanics: The dreams stuff is made of

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1001557]
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-23 06:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found