English | >> Français << | Deutsch | Magyar | 中文 | Polski ZVON > Tutorials > XSLT Tutorial
>> Page 48 << | Précédent | Suivant | Contenu | Index des éléments

La fonction concat() renvoie la concaténation de ses arguments.

Feuille de style XSLT 1

Source XML
<source>

<text>Start</text>
<text>Body</text>
<text>Finish</text>

</source>

Sortie
<P>Start - Body - Finish</P>

Vue HTML

Start - Body - Finish

Feuille de style XSLT
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

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


</xsl:stylesheet>