gpt4 book ai didi

xslt - 用 XSL-T 排除第一个 child

转载 作者:行者123 更新时间:2023-12-03 15:23:24 26 4
gpt4 key购买 nike

我想要做的很简单,但我找不到方法。我只想迭代节点的子节点,不包括第一个子节点。

例如,在这个 XML 片段中,我想要所有 <bar>元素,除了第一个:

<foo>
<Bar>Example</Bar>
<Bar>This is an example</Bar>
<Bar>Another example</Bar>
<Bar>Bar</Bar>
</foo>

没有我可以过滤的通用属性(比如 id 标签或类似的东西)。

有什么建议?

最佳答案

您可以随时使用 position连同xsl:when .

<xsl:when test="node[position() > 1]">
<!-- Do my stuff -->
</xsl:when>

关于xslt - 用 XSL-T 排除第一个 child ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2574944/

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