in reply to Re: Question about text::csv_xs
in thread Question about text::csv_xs
my $cols_arrayref = $csv->getline($fh); # get an arrayref my @cols_array = @$cols_arrayref; # deref the entire array my $col = $cols_arrayref->[0]; # or deref an element
|
|---|