in reply to Modifying an existing Perl script to ask for input and output filenames and also remove double quotes for outfile file

See the quote_space attribute. Fields with spaces in them are quoted by default. As this is not required, there is an option to not do so.

my $csvo = Text::CSV->new ({ binary => 1, eol => $/, quote_space => 0 });

Enjoy, Have FUN! H.Merijn
  • Comment on Re: Modifying an existing Perl script to ask for input and output filenames and also remove double quotes for outfile file
  • Download Code