如何为下面的节点编写xpath查询?我需要遍历树,直到子"Attribute"
不为空。
<Attribute name="ParentNode" type="collection" datatype="collection" value="">
<Attribute name="ChildNode" type="collection" datatype="collection" value="">
<Attribute name="GrandChild" type="Measurable.Text" datatype="string" value="2605"/>
</Attribute>
</Attribute>
答案 0 :(得分:0)
尝试使用此Xpath表达式://Attribute[not(*)]
。