我有一个相当大的 XML 结构,其最简单的形式看起来有点像这样:
<document>
<body>
<section>
<p>Some text</p>
</section>
</body>
<backm>
<section>
<p>Some text</p>
<figure><title>This</title></figure>
</section>
</backm>
</document>
section
级别几乎可以是无限的(在和body
元素内backm
),所以我可以有一个section
in section
in section
insection
等,并且figure
元素可以在 a numlist
、 an itenmlist
、 ap
和更多元素内。
我想要做的是检查in 元素是否title
在figure
元素内的某个位置backm
。这可能吗?