Thread Hash --> Zugriff auf ein bestimmtes Element (3 answers)
Opened by PETER_PAN2009 at 2010-09-20 10:09

Gast wer
 2010-09-20 10:22
#141414 #141414
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
#!/usr/bin/perl

use strict;
use warnings;

my %my_hash = (
 teil1 => {
  teil2 => {
   teil3 => {
    teil_3_1 => ['wert_xy'],
    },
   teil4 => {
    teil_4_1 => ['wert_ab']
    },
   },
  },
);


my $ref=$my_hash{teil1}->{teil2};

print $ref->{teil3}->{teil_3_1}->[0]."\n";
print $ref->{teil4}->{teil_4_1}->[0]."\n";

Last edited: 2010-09-20 10:36:51 +0200 (CEST)

View full thread Hash --> Zugriff auf ein bestimmtes Element