Thread Hash mit Arrays als Wert aufbauen (17 answers)
Opened by Pida at 2007-02-22 15:30

vayu
 2007-02-22 16:07
#74505 #74505
User since
2005-01-13
782 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

use strict;
use warnings;

my @pro = qw(1 2 3);
my %hash = ();
$hash{'a'} = \@pro;

foreach my $key (keys %hash) {
print $_."\n" foreach(@{$hash{$key}});
}
\n\n

<!--EDIT|vayu|1172153265-->

View full thread Hash mit Arrays als Wert aufbauen