SmokeyB has asked for the wisdom of the Perl Monks concerning the following question:
I want to parse through in and turn each main heading (Info,VIN) into tables with the next level keys will be the table fields.my %foo = ( Info => [ { MakeEng => 1, MakeFre => 2, ModelEng => 3, ModelFre => 4, ModelYear => 5, }, { MakeEng => 6, MakeFre => 7, ModelEng => 8, ModelFre => 9, ModelYear => 0, }, ], VIN => { VINStatus => 'active', VechileDT => 'on', }, );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Hash of Arrays of Hashes Parsing
by tcf22 (Priest) on Sep 17, 2003 at 19:47 UTC | |
by SmokeyB (Scribe) on Sep 17, 2003 at 20:05 UTC | |
|
Re: Hash of Arrays of Hashes Parsing
by gryphon (Abbot) on Sep 17, 2003 at 20:24 UTC | |
|
Re: Hash of Arrays of Hashes Parsing
by hmerrill (Friar) on Sep 17, 2003 at 20:37 UTC | |
by SmokeyB (Scribe) on Sep 19, 2003 at 15:12 UTC | |
by hmerrill (Friar) on Sep 19, 2003 at 21:08 UTC | |
|
Re: Hash of Arrays of Hashes Parsing
by hardburn (Abbot) on Sep 17, 2003 at 19:35 UTC |