Help for this page

Select Code to Download


  1. or download this
    my $csv = Text::CSV->new();
    my @data = @{$csv->getline_all($in_ph)};
    
  2. or download this
    my $csv = Text::CSV->new();
    
    while (my $aref = $csv->getline($in_ph)) {
        ...
    }