<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>
in the result there is a"+" that i don't it to be shown i want the result to be 1 + 3 + 17 + 11 = 32 but the result is 1 + 3 + 17 + 11 += 32 what i do to prevent the last +