Help for this page

Select Code to Download


  1. or download this
    my @sorted = sort keys %hash;
    
  2. or download this
    foreach my $key (sort keys %hash) {
       # Do something with $hash{key};
    }
    
  3. or download this
    my @sortedkeys = sort { $hash{$a} cmp $hash{$b} } keys %hash;