Text-CSV icon indicating copy to clipboard operation
Text-CSV copied to clipboard

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

Open XSven opened this issue 11 months ago • 1 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.

XSven avatar Feb 28 '24 12:02 XSven

In the end I need to have an official method to access $csv->{ _CACHE }->{ tmp } inside of the while loop.

XSven avatar Mar 11 '24 08:03 XSven