in reply to
Help parsing XML
How about XML::XPath? It allows you to go:
my @test_nodes = $doc->findnodes('//test');
[download]
Of course you have to grok XPath, but for the easy stuff it's just Unix directory paths and a bit more.
Comment on
Re: Help parsing XML
Download
Code
In Section
Seekers of Perl Wisdom