我的 XML 文档有任意嵌套的部分。鉴于对特定部分的引用,我需要找到TextNode
该部分中的所有 s不包括 subsections。
例如,给定对#a1
下面节点的引用,我只需要找到“A1”和“A1”文本节点:
<root>
<section id="a1">
<b>A1 <c>A1</c></b>
<b>A1 <c>A1</c></b>
<section id="a1.1">
<b>A1.1 <c>A1.1</c></b>
</section>
<section id="a1.2">
<b>A1.2 <c>A1.2</c></b>
<section id="a1.2.1">
<b>A1.2.1</b>
</section>
<b>A1.2 <c>A1.2</c></b>
</section>
</section>
<section id="a2">
<b>A2 <c>A2</c></b>
</section>
</root>
如果不是很明显,以上是虚构的数据。特别id
是属性可能不存在于真实世界的文档中。
我现在想出的最好方法是找到该部分中的所有文本节点,然后使用 Ruby 减去我不想要的那些:
def own_text(node)
node.xpath('.//text()') - node.xpath('.//section//text()')
end
doc = Nokogiri.XML(mydoc,&:noblanks)
p own_text(doc.at("#a1")).length #=> 4
我可以制作一个 XPath 1.0 表达式来直接查找这些节点吗?就像是:
.//text()[ancestor::section = self] # self being the original context node