Help for this page

Select Code to Download


  1. or download this
    while ( my $row = $csv_in->getline($fh_in) ) {
        # print out each line you visit during the while loop
    ...
    
        $csv_out->print( $fh_out, [ @$row[ 2, 3, 0, 4 ], ] );
    }