Text-CSV
Text-CSV copied to clipboard
FR: need method to access the complete (unparsed) line
while (my $row = $csv->getline ($fh)) {
my @fields = @$row;
}
Inside of the while loop body I need to access the completed (unparsed) line (usually $_
) that $csv
has used to parse and to create $row
.
In the end I need to have an official method to access $csv->{ _CACHE }->{ tmp }
inside of the while loop.