Help for this page

Select Code to Download


  1. or download this
    my @sorted = sort { substr($a,2) <=> substr($b,2) } @array;
    
  2. or download this
    @array = map {substr($_,2)} @array;
    my @sorted = sort { $a <=> $b } @array;
    @sorted = map { "ch$_" } @sorted;