EchoAngel has asked for the wisdom of the Perl Monks concerning the following question:
My Data Dump looks like thismy %TEST2 = (); $TEST2{HOHOHO} = "LALALAL"; my %TEST = (); $TEST{"ASDF"} = \%TEST2; my %ASDF = (); $ASDF{"ABC"} = \%TEST; print Dumper (\%ASDF); print "DEBUG AGAIN $ASDF{ABC}{ASDF}\n";
Is there anyway I can access the data as simple as : $ASDF{ABC}{ASDF} note : I have larger structure of Hashes and they kind of follow the same idea with hash pointers I just want an easy way to access the data in the hash.$VAR1 = { 'ABC' => { 'ASDF' => { 'HOHOHO' => 'LALALAL' } } };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Help with Viewing Data with In Hash of Hash Pointers
by ikegami (Patriarch) on Nov 05, 2004 at 20:45 UTC | |
|
Re: Help with Viewing Data with In Hash of Hash Pointers
by TedPride (Priest) on Nov 06, 2004 at 13:30 UTC |