Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I would like to store this information as# This is a configuration file. [TITLE] Name = John Location = USA [HEAD] Name = James Location = Canada [BODY] Name = Mayer Location = UK
Could you please give the Sample code.%hash1 = (TITLE =>{Name => John, Location => USA, }, HEAD => {Name => James, Location => Canada, }, BODY=> { Name => Mayer, Location => UK }, );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: .ini type file to store contents in hash of hash format
by PodMaster (Abbot) on Aug 29, 2004 at 13:09 UTC | |
|
Re: .ini type file to store contents in hash of hash format
by ccn (Vicar) on Aug 29, 2004 at 13:09 UTC | |
by Anonymous Monk on Aug 29, 2004 at 13:13 UTC | |
by edan (Curate) on Aug 29, 2004 at 13:37 UTC | |
by edan (Curate) on Aug 29, 2004 at 13:17 UTC | |
by ccn (Vicar) on Aug 29, 2004 at 13:31 UTC | |
|
Re: .ini type file to store contents in hash of hash format
by gaal (Parson) on Aug 29, 2004 at 14:10 UTC |