Help for this page

Select Code to Download


  1. or download this
    my @list1 = $doc->selectNodes("A/B");
    my @list2 = $doc->selectNodes("A/C/D");
    ...
        }
        print "$B / $D \n";
    }
    
  2. or download this
    print "B NODES:\n";
    print "\t", $_->nodeValue(), "\n"
    ...
    print "\nD NODES:\n";
    print "\t", $_->nodeValue(), "\n"
        for $doc->selectNodes("A/C/D");