Help for this page

Select Code to Download


  1. or download this
    my @keys = sort keys %hash; # adapt to your needs here.
    
    for (@keys) {
      print "$_ => $hash{$_}\n";
    }
    
  2. or download this
    my @keys = map { tr/a-zA-Z/A-Za-z/; $_ } sort map { tr/a-zA-Z/A-Za-z/;
    + $_ } keys %hash;