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

That did it! Thank you so much for cluing me into to the combine function. You are great and the next beer I drink is in your honor!
  • Comment on Re^4: how to modify a field in a CSV file

Replies are listed 'Best First'.
Re^5: how to modify a field in a CSV file
by Tux (Canon) on Sep 02, 2011 at 22:21 UTC

    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