in reply to Finding node with attribute XML::LibXML

From http://www.w3schools.com/xpath/xpath_syntax.asp:
//title[@lang='en'] Selects all the title elements that have an attribute named lang with +a value of 'en'
my @vol = $doc->findnodes(q {//Volume[@VolumeCategory="L"]});