<xslTutorial creator="nicmila@idoox.com">
<index keywords='concat()'/>

<description>
The concat function returns the concatenation of its arguments.
</description>

<xmlSource id="id1">
<text>Start</text>
<text>Body</text>
<text>Finish</text>
</xmlSource>

<attValues>
<value match=''></value>
</attValues>

<xslStylesheet id="id2">
<xsl:variable name="T" select="concat(//text[1],' - ',//text[2],' - ',//text[3])"/>
<xsl:template match="/">
<P><xsl:value-of select="$T"/></P>
</xsl:template>
</xslStylesheet>
</xslTutorial>