Thread Hash nach Werten sortieren (4 answers)
Opened by cbxk1xg at 2009-11-19 13:10

pq
 2009-11-19 13:16
#128325 #128325
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
ist ganz einfach. zum vergleich, numerisch sortiert nach keys:
Code (perl): (dl )
for my $key (sort {      $a     <=>      $b     } keys %hash) {}


numerisch sortiert nach values:
Code (perl): (dl )
for my $key (sort { $hash{ $a } <=> $hash{ $b } } keys %hash) {}
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Hash nach Werten sortieren