KSHYAMKUMAR has asked for the wisdom of the Perl Monks concerning the following question:
use Text::CSV; print Text::CSV->VERSION . "\n"; print Text::CSV->version. "\n";# The version of the worker module my @array = ('REGR_EMEA_UK_CONF_CUST1_BAN ??e???ta?'); my $csv = Text::CSV->new (); my $status = $csv->combine (@array); print $csv->string() . "\n"; exit 0;
output:Old Version 1.13 0.67 REGR_EMEA_UK_CONF_CUST1_BAN ??e???ta?
output: New Version 1.21 0.91 "REGR_EMEA_UK_CONF_CUST1_BAN ??e???ta?"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Text::CSV Changes
by toolic (Bishop) on Aug 26, 2015 at 17:03 UTC | |
|
Re: Text::CSV Changes
by KSHYAMKUMAR (Acolyte) on Aug 26, 2015 at 17:04 UTC | |
by KSHYAMKUMAR (Acolyte) on Aug 26, 2015 at 17:32 UTC |