gpt4 book ai didi

xml - 基于属性满足条件的节点数

转载 作者:数据小太阳 更新时间:2023-10-29 02:23:16 25 4
gpt4 key购买 nike

下面是我用 PHP's XSLTProcessor 处理的 XML 的一部分:

<result>
<uf x="20" y="0"/>
<uf x="22" y="22"/>
<uf x="4" y="3"/>
<uf x="15" y="15"/>
</result>

我需要知道在 x == y 处存在多少个“uf”节点。

在上面的例子中,那将是 2。

我试过循环并递增一个计数器变量,但我无法重新定义变量。

我已经尝试了很多 xsl:number 与 count/from 的组合,但无法获得正确的 XPath 表达式。

谢谢!

最佳答案

<xsl:value-of select="count(/result/uf[@y=@x])" />

关于xml - 基于属性满足条件的节点数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/102606/

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