Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
File:use Data::Dumper; use Tie::IxHash; tie %data, 'Tie::IxHash'; do "File"; $data{SomeMoreStuff}{SomeMoreData} = 'x'; print Dumper \%data;
The output looks like:%data = ( SomeStuff => { SomeData => 'a', SomeMoreData =>'b', OtherData =>'c', }, SomeMoreStuff => { SomeData =>'a', SomeMoreData => 'b', SomeExtraData => 'c', OtherData => 'd' } );
The output I want:$VAR1 = { 'SomeStuff' => { 'OtherData' => 'c', 'SomeMoreData' => 'b', 'SomeData' => 'a' }, 'SomeMoreStuff' => { 'OtherData' => 'd', 'SomeMoreData' => 'x', 'SomeExtraData' => 'c', 'SomeData' => 'a' } };
$VAR1 = { 'SomeStuff' => { 'SomeData' => 'a' 'SomeMoreData' => 'b', 'OtherData' => 'c', }, 'SomeMoreStuff' => { 'SomeData' => 'a' 'SomeMoreData' => 'x', 'SomeExtraData' => 'c', 'OtherData' => 'd', } };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tie a hash of hashes?
by ikegami (Patriarch) on Feb 02, 2006 at 20:47 UTC | |
by Anonymous Monk on Feb 02, 2006 at 22:19 UTC | |
|
Re: Tie a hash of hashes?
by japhy (Canon) on Feb 03, 2006 at 03:43 UTC | |
by Anonymous Monk on Feb 03, 2006 at 15:51 UTC | |
by japhy (Canon) on Feb 03, 2006 at 16:05 UTC | |
|
Re: Tie a hash of hashes?
by ikegami (Patriarch) on Feb 02, 2006 at 20:24 UTC | |
|
Re: Tie a hash of hashes?
by kutsu (Priest) on Feb 02, 2006 at 20:24 UTC |