Help for this page

Select Code to Download


  1. or download this
    ###############################
    # try to sort fields as numbers first, then as strings
    ...
      }
      return $a cmp $b;
    }
    
  2. or download this
    sub smart_sort
    {
    ...
      # can't decide by fields, decide by whole string
      return $a cmp $b;
    }