in reply to Re^4: how to modify a field in a CSV file
in thread how to modify a field in a CSV file

Or use print when setting eol attribute

my $csv = Text::CSV->new ({ quote_space => 0, eol => "\n", auto_diag = +> 1 }); my @columns = ("What, a nice day", "This is a fence", "Here is an,and +day"); $csv->print ($fh, \@columns);

Enjoy, Have FUN! H.Merijn