RosettaCodeData/Task/XML-XPath/Sidef/xml-xpath.sidef

8 lines
173 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
require('XML::XPath');
var x = %s'XML::XPath'.new(ARGF.slurp);
[x.findnodes('//item[1]')][0];
say [x.findnodes('//price')].map{x.getNodeText(_)};
[x.findnodes('//name')];