in reply to Re^2: XML dont include parent node
in thread XML dont include parent node
XML::Twig docs says these methods are similar to the XML::LibXML method. Being probably 'similar' the key word.my @all = $twig->get_xpath ('/Root/Parent/child*'); #gives:error in xpath expression... my @all = $twig->get_xpath ('/Root/*/*[starts-with(name(), "child")] +'); #also gives error in xpath expression.. #someresults with the findnodes method..
|
|---|