Help for this page

Select Code to Download


  1. or download this
    # make it a "sort sub"
    
    ...
    
    # to sort having defined this sub, you do
    @list = sort alphabetical @list;
    
  2. or download this
    @list = sort { lc($a) cmp lc($b) } @list