Thread Hash Values als ARRAY / Andere Möglichkeit (9 answers)
Opened by PETER_PAN2009 at 2009-10-27 12:31

Linuxer
 2009-10-27 19:00
#127359 #127359
User since
2006-01-27
3891 Artikel
HausmeisterIn

user image
Was funktionierte an meiner Lösung nicht?

Code (perl): (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
25
26
#!/usr/bin/perl
use strict;
use warnings;

my @array = qw(
    xx1111y000 xx1111y001 xx1111y002 xx2222y000 xx2222y001
);

my %hash;
for my $element ( @array ) {
    if ( $element =~ m/(\w{6})(\w{4})/ ) {
        # fuelle Hash-of-Array
        push @{ $hash{$1} }, $2;
    }
}


for my $key ( sort keys %hash ) {

    # dereferenziere Hash-of-Array und baue String zusammen
    my $value = join ', ', @{ $hash{$key} };

    print qq{<li><a href="$key">$value</a></li>\n},
}

__END__
meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen!

View full thread Hash Values als ARRAY / Andere Möglichkeit