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

<description>Function concat() can stick several strings together
</description>

<xmlSource id="id1">
<user firstName="John" surname='Smith'/>
<user firstName="Joe" surname='Sullivan'/>
<user firstName="Charles" surname='Doohen'/>
</xmlSource>

<attValues>
<value match="">
</value>
</attValues>


<xslStylesheet id="id2">
<xsl:template match="//user">
<P><xsl:value-of select="concat(@firstName,' ',@surname)"/></P>
</xsl:template>

</xslStylesheet>


</xslTutorial>