我有一个如下所示的 XML 结构:
<document>
<body>
<section>
<title>something</title>
<subtitle>Something again</subtitle>
<section>
<p xml:id="1234">Some text</p>
</section>
</section>
<section>
<title>something2</title>
<subtitle>Something again2</subtitle>
<section>
<p xml:id="12345678">Some text2</p>
<p getelement="1234"></p>
</section>
</section>
</body>
</document>
我想搜索“getelement”中定义的属性值。我在这里从一个友好的灵魂那里得到了这段代码:
//section[section/p[@xml:id=@getelement]]/subtitle
但它不起作用,我不能使用 current(),因为 Arbortext 不支持它。