Thread array sortieren nach vorgabe (13 answers)
Opened by mordur at 2004-05-04 11:02

Marcus
 2004-05-04 16:21
#81975 #81975
User since
2004-05-03
18 Artikel
BenutzerIn
[default_avatar]
Ooops, ich glaube ich hab das heute morgen falsch verstanden.
Aber ich hab jetzt noch eine Variante anzubieten:
Code: (dl )
1
2
3
4
5
6
my @quelle=('a', 'b', 'd');
my $rating='adb';

@quelle = sort { index ($rating, $b) <=> index ($rating, $a) } @quelle;

print @quelle; # Ausgabe: bda

Vielleich nicht so praktikabel aber nett :)

Gruß Marcus

View full thread array sortieren nach vorgabe