I have a filehandle FILE in Perl, and I want to iterate over all the lines in the file. Is there a difference between the following?
while (<FILE>) {
# do something
}
and
foreach (<FILE>) {
# do something
}
|
1
|
I have a filehandle
and
|
|||
|
|
|
|
For most purposes, you probably won't notice a difference. However, EDIT (via Schwern): The
It's unfortunate that Perl doesn't optimize this special case as it does with the range operator ( For example, if I read /usr/share/dict/words with a
The |
||||||||||
|
|
|
In scalar context (i.e. In list context (i.e. You should use the See perlop - I/O Operators for more. Edit: j_random_hacker rightly says that
|
||||
|
|
|
In addition to the previous responses, another benefit of using while is that you can use the $. variable. This is the current line number of the last filehandle accessed (see perldoc perlvar).
|
||
|
|
Update: j random hacker points out in a comment that Perl special cases the falseness test in a while loop when reading from a file handle. I've just verified that reading a false value will not terminate the loop -- at least on modern perls. Sorry for steering you all wrong. After 15 years of writing Perl I'm still a noob. ;) Everyone above is right: use the while loop because it will be more memory efficient and give you more control. A funny thing about that while loop though is that it exits when the read is false. Usually that will be end-of-file, but what if it returns an empty string or a 0? Oops! Your program just exited too soon. This can happen on any file handle if the last line in the file doesn't have a newline. It can also happen with custom file objects that have a read method that doesn't treat newlines the same way as regular Perl file objects. Here's how to fix it. Check for an undefined value read which indicates end-of-file: while (defined(my $line = <FILE>)) {
print $line;
}
The foreach loop doesn't have this problem by the way and is correct even though inefficient. |
||||||||||
|
|
|
*j_random_hacker* mentioned this in the comments to this answer, but didn't actually put it in an answer of its own, even though it's another difference worth mentioning. The difference is that
Will print out the last line of However,
Will print out
Now this will print |
||
|
|