Thread Hashvalues nach Variablen sortieren: SCHWER (25 answers)
Opened by Gast at 2004-09-01 16:49

renee
 2004-09-01 17:40
#49752 #49752
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Einfacher wäre es, wenn Du alles in einem Hash hättest...
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /usr/bin/perl

use strict;
use warnings;

my %hash = ();

while(my $line = <DATA>){
 my @array = split(/\s+/,$line);
 $hash{$array[1]} = [@array[0,2,3]];# key: kino, value: anonymes array mit film, datum, uhrzeit
}


my @sorted_keys = sort{$hash{$a}->[1] cmp $hash{$b}->[1]
                      || $hash{$a}->[2] cmp $hash{$b}->[2]}keys(%hash);

print $hash{$_}->[1]," ",$hash{$_}->[2]," ",$_," ",$hash{$_}->[0],"\n" for(@sorted_keys);



_ _DATA_ _
KingArthur Kino5 23.09.04 15:55
Titanic Kino6  20.09.04 20:00
Traumschiff Kino7 20.09.04 21:00


Ausgabe:
Quote
~/entwicklung 42> perl sort.pl
20.09.04 20:00 Kino6 Titanic
20.09.04 21:00 Kino7 Traumschiff
23.09.04 15:55 Kino5 KingArthur
\n\n

<!--EDIT|renee|1094046536-->
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Hashvalues nach Variablen sortieren: SCHWER