我正在使用 Nokogiri 提取一个返回 Nokogiri::XML::NodeSet 的页面。由此,我想只从偶数节点中提取文本。
doc.search("h2 a").class #=> Nokogiri::XML::NodeSet
doc.search("h2 a").count #=> returns 148
我对0、2、4、8等感兴趣:
doc.search("h2 a")[0].text #=> the one I wanted.
doc.search("h2 a")[2].text #=> the one I wanted.