例如,在这个XML片段中,我想要所有的< bar>元素,除了第一个:
<foo> <Bar>Example</Bar> <Bar>This is an example</Bar> <Bar>Another example</Bar> <Bar>Bar</Bar> </foo>
没有可以过滤的通用属性(如id标签或类似的东西).
有什么建议么?
<xsl:when test="node[position() > 1]"> <!-- Do my stuff --> </xsl:when>