- or download this
say "[1a]" . $nodeybits->findvalue('//@GeneralID');
- or download this
say "[1b]" . $_->findvalue('.')
foreach $nodeybits->findnodes('*/@GeneralID');
- or download this
my $inner_xpc = XML::LibXML::XPathContext->new($nodeybits);
$inner_xpc->registerNs( theNS => 'http://www.wow.com/BlahML');
# [3]
print $inner_xpc->findnodes('//theNS:CannotGetTagA')->string_value . "
+\n";