Thread Hash-Zuweisungen... (9 answers)
Opened by pearl-man at 2006-11-12 14:30

styx-cc
 2006-11-12 14:41
#71663 #71663
User since
2006-05-20
533 Artikel
BenutzerIn

user image
Also die Art von Hashes die du da zeigst kenne ich nicht, aber du koenntest ein Hash aus Arrays bauen, dann laesst sich darauf auch recht einfach zugreifen.

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl -w
use strict;

my @chars = ("A".."Z");
my @nums = (0..9);

my %hash = (
nums => \@nums,
chars => \@chars
);

print $hash{'nums'}->[1];


MfG\n\n

<!--EDIT|styx-cc|1163335333-->
Pörl.

View full thread Hash-Zuweisungen...