in reply to XML::Simple: Loop through childnodes?
Does anyone know what I would need to do to loop through each item under inbox?
Sure. Determine what $d looks like and then walk that data structure.
use Data::Dump::Streamer; my $xml = XML::Simple->new(); my $d = $xml->XMLin("sample.xml",ForceArray => 1, KeepRoot => 1); Dump $d;
Gives
$HASH1 = { inbox => [ { item => [ { description => [ 'Bar' ], title => [ 'Foo' ] }, { description => [ 'Foobar' ], title => [ 'Baz' ] } ] } ] };
Now, for that sample XML it seems to have lots of redundant hashes and arrays if what you care about are the items. So, maybe don't use the extra options:
my $d = $xml->XMLin("sample.xml");
Gives:
$HASH1 = { item => [ { description => 'Bar', title => 'Foo' }, { description => 'Foobar', title => 'Baz' } ] };
So with that, $d->{item} would appear to be an AOH. Loop through it like this:
for my $item ( @{ $d->{item} } ) { print "$item->{title}\n"; # for example }
-xdg
Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: XML::Simple: Loop through childnodes?
by Jenda (Abbot) on Feb 17, 2007 at 19:45 UTC |