in reply to Need Help Understanding Parsing XML into multi level struck
here is another wayuse XML::Simple; my $xs = XML::Simple->new( ForceArray => 1,suppressempty => '' ); my @href = $xs->XMLin(shift); print Dumper(@href);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Need Help Understanding Parsing XML into multi level struck
by Aristotle (Chancellor) on Mar 20, 2004 at 10:21 UTC |