![]() |
|
good chemistry is complicated, and a little bit messy -LW |
|
PerlMonks |
Re^2: Print contents of text file line by lineby stevieb (Canon) |
on Jun 23, 2018 at 19:15 UTC ( #1217300=note: print w/replies, xml ) | Need Help?? |
That will slurp the entire file into memory all at once, which is almost always what isn't desired. Use the scalar, but do so in proper context. The OP is assuming that the return from each file handle read is an array, which it isn't. In a while() loop like the OP has, the file handle is read a line at a time, so the scalar holds everything up to end-of-line (including the newline character(s)). To use an array as you suggested would mean that you'd have to eliminate said while() loop.
Note that if the while() block is very small, a well-known Perl idiom is to use the built-in special default variable:
In Section
Seekers of Perl Wisdom
|
|