Help for this page

Select Code to Download


  1. or download this
    sub my_sort_index {
        my ($c, $d) = @_;
    ...
        ++$return_value  if $d =~ /^index\./;
        return $return_value;
    }
    
  2. or download this
    my @sorted = sort { my_index_sort($a,$b) || $b cmp $a } @list;
    
  3. or download this
    sub convert_name_to_L_F_M_Extras {
        # Lots of ugly code to split the name into bits, determine which b
    +it goes where, and
    ...
    
    # Now throw away the transformed names and keep only the list of sorte
    +d names.
    @sorted = map { $_->[1] } @sorted;