Help for this page

Select Code to Download


  1. or download this
    package CSVParse;
    use strict;
    ...
    }
    
    1;
    
  2. or download this
    open my $tabelaclientes, "gunzip -c somefile.csv.gz|" || die $!;
    my $csv = CSVParse->new($tabelaclientes);
    ...
      print join(",",@$row)."\n";
    }
    close $tabelaclientes;