in reply to Re: Re: Re: Module to read a dumped file
in thread Module to read a dumped file
That it was that simple after all. This is doing the job except for one thing. If your hashtable contains a non-referenced top level it will be removed during the input using do. See sample below
Original hash table
$VAR1 = 'dataParams'; $VAR2 = { 'license_feature' => { 'val' => 'geditor' }, };
New hash table
$VAR1 = 'license_feature'; $VAR2 = { 'val' => 'geditor' };
So it is not exactly the same but it already helps a lot.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Module to read a dumped file
by flounder99 (Friar) on Feb 11, 2003 at 16:17 UTC | |
Re: Re: Re: Re: Re: Module to read a dumped file
by broquaint (Abbot) on Feb 11, 2003 at 16:19 UTC | |
Re: Re: Re: Re: Re: Module to read a dumped file
by demerphq (Chancellor) on Feb 12, 2003 at 00:07 UTC | |
by juo (Curate) on Feb 12, 2003 at 15:12 UTC |