Help for this page

Select Code to Download


  1. or download this
    /descendant::Volume[@VolumeCategory="L"]
    
  2. or download this
    //Volume[@VolumeCategory="L"]
    
  3. or download this
    my @matching =
       grep {
    ...
          defined($vc) && $vc eq "L"
       }
          $doc->getElementsByTagName('Volume');
    
  4. or download this
    my @matching = $doc->findnodes('//Volume[@VolumeCategory="L"]');