Help for this page

Select Code to Download


  1. or download this
    sort { $hash{$a} <=> $hash{$b} } values %hash;
    
  2. or download this
    # list of sorted keys in numeric order
    my @keys = sort { $a <=> $b } keys %hash; 
    ...
    
    # a list of the *keys* sorted by their corresponding value
    my @keys_by_value = sort { $hash{$a} <=> $hash{$b} } keys %hash;