sen has asked for the wisdom of the Perl Monks concerning the following question:
Hi,
I am new to perl. I tried lot. I have some xml file. I have to parse the xml file and insert the fields into database. I use XML::Simple to parse the data. It's working fine. I am getting output like this
one => 1, two => [ { x => 1, y => [ { a => 1, b => 2 }, { a => 2, b => 3} ] } ]
one => 1, two => [ { x => 1, y_a => 1, y_b => 2, }, { x => 1, y_a => 2, y_b => 3 } ]
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to format this xml output?
by glasswalk3r (Friar) on Jan 23, 2006 at 12:20 UTC | |
|
Re: How to format this xml output?
by planetscape (Chancellor) on Jan 24, 2006 at 06:58 UTC |