foreach (sort {$a <=> $b} keys %hash) { # do something with $hash{$_} ... } #### foreach (sort keys %hash) { # ... }