Help for this page

Select Code to Download


  1. or download this
    use Text::CSV_XS qw( csv );
    
    ...
        $a->[4] cmp $b->[4]
        } @{csv (in => "sorted.csv")};
    csv (out => "sorted.csv", in => \@sorted);
    
  2. or download this
    csv (in  => [ sort { $a->[5] cmp $b->[5] ||
                         $a->[4] cmp $b->[4]
                         } @{csv (in => "sorted.csv")}],
         out => "sorted.csv");