Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^5: Trying to do multiple while loops on the same input file

by zek152 (Pilgrim)
on Jun 01, 2011 at 15:28 UTC ( [id://907652]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Trying to do multiple while loops on the same input file
in thread Trying to do multiple while loops on the same input file

"I guess you meant 'once only' instead of start to finish."

I did not mean that. Perhaps a better way would have been for me to say a beginning of file to end of file manner. All the aforementioned languages support some sort of seek which allows you to change the current position in the file.

The reason that you should not get an error message is because the while(<FILE>){...} is behaving exactly as documented and in my opinion it behaves intuitively.

As stated in perl documentation <FILE_HANDLE> will return undef when there is nothing left to read at the current location in the file (aka the end of the file). Undef evaluates as false and therefore the body of the while loop is never executed. It is important to note that the command did not fail, silently or otherwise. The command behaved exactly as documented. The filehandle is not "already read","expired" or "inactive". There is simply nothing left to be read at the current position in the file.

I believe the primary issue is that your understanding of how file reading should work does not match how file reading actually works on modern operating systems. At the moment I do not have any advice on places to learn more about file reading other than the perldoc.perl.org. Perhaps another PerlMonk would have some additional reference material that would help you better understand files, file descriptors, and file reading.

Log In?
Username:
Password:

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

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

    No recent polls found