in reply to Re: Parsing a text file
in thread Parsing a text file

... or even with
my @array = <LOG>; # now remove the newlines at the end: chomp @array;

Replies are listed 'Best First'.
Re^3: Parsing a text file
by johngg (Canon) on Apr 16, 2008 at 14:47 UTC
    ... or even

    chomp( my @array = <LOG> );