in reply to Re: XPath search qn
in thread XPath search qn
ANDmy $nodes = $xp->find(q{/files/file/userprop/nameprop[text()='Version' +]/../valueprop[text()='v1.3|v1.31']/ancestor::file});
Both did not work. Is it also possible to do a range search ? Like substr(text(),1,2) > 1.3 to get all version greater than 'v1.3'. Or even a date search ?my $nodes = $xp->find(q{/files/file/userprop/nameprop[text()='Version' +]/../valueprop[text()='v1.3*']/ancestor::file});
|
|---|