in reply to Re: XML::XPath Question
in thread XML::XPath Question
thats what i thought too, and tried these changes:
foreach my $node($tree->findnodes('path')->get_nodelist(){ if ($node->exists('path')){
and alternatively
my $node_list = $tree->find('path'); foreach my $node($node_list->get_nodelist()){ if ($node->exists('path')){
I still get the same error..
|
|---|