http://qs321.pair.com?node_id=11106996


in reply to Re^3: Perl script for the post processing of one CSV file
in thread Perl script for the post processing of one CSV file

Those are arguments, not subroutines, and they are part of Text::CSV, not Perl itself. What version of Perl are you using (perl -v from a prompt), and what version of Text::CSV do you have installed? Find that out with perl -MText::CSV -e 'print Text::CSV->VERSION' again from a prompt. The latest is 2.00, released in May of this year.

You can upgrade your version of Text::CSV using CPAN (and install Text::CSV_XS while you're at it!), and you will be able to use these attributes. Using CPAN

Replies are listed 'Best First'.
Re^5: Perl script for the post processing of one CSV file
by kshitij (Sexton) on Oct 03, 2019 at 08:15 UTC

      Text::CSV 1.32 dates back to 2013. The current version is 2.00. I again suggest you upgrade Text::CSV. You can look at the link I sent you earlier if you are unsure how to use CPAN.