http://www.perlmonks.org?node_id=802688


in reply to XML::Lib XML question

As far as I understand XPath, /yyy will look for a root node of <yyy>, which you don't have. Either /xxx/yyy or //yyy should find the yyy node.

Update: This just shows what little I know of namespaces. I think ikegami's reply is correct and this one is wrong. With a root node of xxx, $root->findNodes should find /yyy in <xxx><yyy></xxx>, but the namespace prevents the match.

Replies are listed 'Best First'.
Re^2: XML::Lib XML question
by weismat (Friar) on Oct 22, 2009 at 08:33 UTC
    The beauty of Sketchpath is that you click on the node and it suggests the query.