in reply to
Extracting Text Lines
I think your use of
readline()
is redundant since
<FILE>
and
readline(FILE)
are equivalent. So
readline(<FILE>)
is actually reading the line using
<>
, and not
readline()
.
Cheers!
Comment on
Re: Extracting Text Lines
In Section
Seekers of Perl Wisdom