in reply to Re: Parsing a text filein thread Parsing a text file
my @array = <LOG>; # now remove the newlines at the end: chomp @array; [download]
chomp( my @array = <LOG> ); [download]