基本上我有一個由逗號分隔的循環創建的字符串,例如。 A,B,C, 我想擺脫最後一個逗號。子串,xslt中的字符串長度函數
<xsl:variable name="myConcatString">
<xsl:for-each select="valueinElement">
<xsl:value-of select="@attributeValue"/>,
</xsl:for-each>
</xsl:variable>
<xsl:variable name="valueLength" select="string-length($myConcatString)-1"/>
<xsl:value-of select="substring($myConcatString,1,$valueLength)"/>
現在最後一行應該給我沒有「,」在最後的A,B,C。有人能告訴我發生了什麼問題嗎?
很大,U救了我小時! – chugh97 2009-06-18 13:16:33