in reply to Unknown number of XML nodes

OK, I'll bite ;--)

As usual with XML you have 3 options:

The use of XPath will really make your work much easier, so you should really forget about the XML::Simple/XML::Smart family (and also about the SAX stuff IMHO), and try XML::LibXML or XML::Twig.

Does this help?

Replies are listed 'Best First'.
Re: Unknown number of XML nodes
by MonkPaul (Friar) on Nov 29, 2005 at 14:25 UTC
    That route seems best for determining the path as you all have suggested. XML::LibXML Ahoy!