我可以使用在线 xpath 工具让下面的 xpath 与下面的 xml 一起工作,但我得到一个“表达式必须评估为节点集”。.NET 4.5 中的异常
路径:
//*[starts-with(name(.), "childnode")[identification/text()='xyz']]
xml:
<rootnode>
<childnode1234>
<identification>xyz</identification>
</childnode1234>
<childnode3456>
<identification>abc</identification>
</childnode3456>
</rootnode>
预期的结果是
<childnode1234>
<identification>xyz</identification>
</childnode1234>