我正在尝试使用 C# 中的 XPath 查询解析一些 XML 数据。但是我的查询没有成功找到我正在寻找的元素(它什么也没找到)。
我的 XPath 查询出了什么问题?我的语法following-sibling
不正确还是什么?如何编辑我的 XPath 以找到正确的value
元素?
<attributes>
<real>
<name>cover rl</name>
<value>89.87414122</value>
</real>
<real>
<name>pit depth</name>
<value>2.35620671</value> <!-- This is the value I need -->
</real>
<attributes>
我的 XPath 查询失败:
ns:attributes/real/name[text() = 'pit depth']/following-sibling::value