makamaka / Text-CSV

comma-separated values manipulator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FR: need method to access the complete (unparsed) line

XSven opened this issue · comments

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.