I am attempting to parse a CSV file in my script. I have installed the Tie::CSV_file module and have attempted in the code only to tie the file and print out some data to ensure I am on the right track with the following code...
my($result) = GetOptions ("date=s" => \$inDate);
my($infile) = "USSTSF$inDate.txt";
tie my @csvdata, 'Tie::CSV_File', $infile;
print "Line 5, column 1: ", $csvdata[4][0] . "\n";
However, I get the following error when attempting to run...
"Can't locate object method "parse" via package "quote_char" (perhaps you forgot
to load "quote_char"?) at C:/Perl/lib/tie/CSV_File.pm line 198, <FH> line 5."
I checked via CPAN and the module Parse::CSV is up to date. Am I missing a different module. Any ideas would be greatly appreciated.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.