gpt4 book ai didi

xml - 如何在 XPath 中的所有路径元素上指定条件?

转载 作者:行者123 更新时间:2023-12-04 01:10:25 26 4
gpt4 key购买 nike

这是我的 XML:

<a>
<a>
<a stop="">
<a>
<b/>
</a>
</a>
</a>
</a>

我需要选择元素 <b>如果它的路径没有 <a>@stop .它应该是这样的(假设我已经停留在树中的某个 <a>):

a//[not(@stop)]b

最佳答案

select element <b> if the path to it doesn't have <a> with @stop

我会这样理解:

//b[not(ancestor::a/@stop)]

关于xml - 如何在 XPath 中的所有路径元素上指定条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65006306/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com