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