in reply to Re: LibXML: Can't get value
in thread LibXML: Can't get value
Hi,
You can use also whitespace in xpath
my $xpath = q{ /files /file[@name="Image"] /item/field[ ( @name="Name" and @class="FILENAME" ) or @name="Size" ] }; for my $node ( $dom->findnodes($xpath) )
|
|---|