http://www.perlmonks.org?node_id=983590


in reply to Chomp is removing the whole word instead of the newline

From the docs:

It (chomp) returns the total number of characters removed from all its arguments

So   my $var = chomp ($row[1]); is not doing what you expect it to do.

Rata