in reply to Re: Another array thing - split two fields into one
in thread Another array thing - split two fields into one

Something like while ( chomp(my $line = <IN>) ) { } will do it :)

chomp() returns the number of chopped of chars. So this is not something that's recommended to do.

ihb