Help for this page

Select Code to Download


  1. or download this
    ... open $fh ...
    $csv = Text::CSV_PP->new();           # create a new CSV parser object
    ...
    while (defined($col = $csv->getline($fh))) {
      ...
    }