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

Re: File Reading and Closing confusion

by ikegami (Patriarch)
on Aug 09, 2010 at 00:17 UTC ( [id://853690]=note: print w/replies, xml ) Need Help??


in reply to File Reading and Closing confusion

What I am confused about is when in a loop I have something like while(<FH>){...}, is this any different than $line=<FH> or are these granularly the same?

while (<FH>) is transformed into while (defined($_ = <FH>)).

Yes, $_=<FH> has the same granularity as $line=<FH>, whatever that means.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-20 02:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found