Help for this page

Select Code to Download


  1. or download this
    foreach my $key ( sort { $hash{$a} cmp $hash{$b} } keys %hash ) {
        # do something useful
    }
    
  2. or download this
    foreach my $key ( sort my_sorter keys %hash ) {
       # do something useful
    ...
    sub my_sorter {
        return $hash{$a} cmp $hash{$b};
    }