User Tools

Site Tools


kurs:hash_by_value_sortieren
@keys = sort keys %hash;    # sorted by key
@keys = sort {
  $hash{$a} cmp $hash{$b}
  } keys %hash;       # and by value
kurs/hash_by_value_sortieren.txt · Last modified: 2014/09/10 21:22 (external edit)