给定这个XML数据:
<root> <item>apple</item> <item>orange</item> <item>banana</item> </root>
我可以使用这个XSLT标记:
... <xsl:for-each select="root/item"> <xsl:value-of select="."/>,</xsl:for-each> ...
得到这个结果:
apple,orange,banana,
但是如何生成最后一个逗号不存在的列表?我认为可以做的事情是:
... <xsl:for-each select="root/item"> <xsl:value-of select="."/> <xsl:if test="...">,</xsl:if> </xsl:for-each> ...
但测试表达式应该是什么?
我需要一些方法来确定列表是多长时间,我目前在列表中,或者,如果我目前正在处理列表中的最后一个元素(这意味着我不在乎它是多长时间或什么当前位置是)。
看看position(),count()和last()函数;例如,test =“position()& lt; last()”。
原文链接:https://www.f2er.com/xml/293498.html