contrite_newbie has asked for the wisdom of the Perl Monks concerning the following question:
I am using Text::CSV_XS to parse a .csv file
use warnings; use strict; use Text::CSV_XS; my @arrray; my $csv = Text::CSV_XS->new();
The file I am opening has a "some, text",value,value1,value2,value3 format. I think I need another attribute in new() to identify the first column contains a string enclosed by "" and separated by a , inside the ""
Is this a correct assumption? If so what is the attribute syntax for this?
Thanks a ton
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: TEXT::CSV_XS useage question
by diotalevi (Canon) on Oct 11, 2004 at 21:56 UTC |