Help for this page

Select Code to Download


  1. or download this
    
    open my $fh_in,  "<", "test.csv"     or die "test.csv: $!";
    ...
    while (my $row = $csv_in->getline ($fh_in)) {
        $csv_out->print ($fh_out, [ @{$row}[2,1,0,3] ]);
        }