Thread Problem mit HASH ref (48 answers)
Opened by bianca at 2010-05-02 13:09

bianca
 2010-05-02 16:01
#136643 #136643
User since
2009-09-13
7016 Artikel
BenutzerIn

user image
Und was ist hiermit?

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl -W
use strict;
no strict 'refs';
use warnings;
use Data::Dumper;
my %hash;
$hash{1}{2} = '1/2';
$hash{1}{2}{3} = '1/2/3';
print Dumper (\%hash);
print "existiert!" if defined $hash{1}{2}{3};

Code: (dl )
1
2
3
4
5
6
$VAR1 = {
'1' => {
'2' => '1/2'
}
};
existiert!

Erwarten würde ich ungefähr soetwas:
Code: (dl )
1
2
3
4
5
6
7
8
9
$VAR1 = {
'1' => {
'2' => '1/2',
{
'3' => '1/2/3'
}
}
};
existiert!
10 print "Hallo"
20 goto 10

View full thread Problem mit HASH ref