Help for this page

Select Code to Download


  1. or download this
    1.    my $sheet;
    2.    my $count = -1;
    ...
    10.     @$row = split( /,/, $_ );
    11.    push @$sheet, $row;
    12.    }
    
  2. or download this
    foreach my $row ( sort { $a->[1] <=> $b->[1] } @$sheet ) {
      print join( ',', @$row ), "\n";