0
<xsl:apply-templates select="xslTutorial"/>
</xsl:template>
<xsl:template match="xslTutorial">
<p>
<xsl:for-each select="number">
<xsl:value-of select="."/>+
</xsl:for-each>
=
<xsl:value-of select="sum(number)"/>
</p>
</xsl:template>
在結果中有一個「+」,我不它顯示我想要的結果是 1 + 3 + 17 + 11 = 32 但結果是1 + 3 + 17 + 11 + 32 = 我做什麼,以防止最後+