Help for this page

Select Code to Download


  1. or download this
        say "[1a]" . $nodeybits->findvalue('//@GeneralID');
    
  2. or download this
        say "[1b]" . $_->findvalue('.') 
                foreach $nodeybits->findnodes('*/@GeneralID');
    
  3. 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";