English | Français | Deutsch | Magyar | >> 中文 << | Polski ZVON > Tutorials > XSLT Tutorial
>> 页 48 << | 上一条 | 下一条 | 目录 | 元素索引

concat 函数返回参数的连接。

XSLT stylesheet 1

XML源码
<source>

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

</source>

输出
<P>Start - Body - Finish</P>

用HTML察看

Start - Body - Finish

XSLT stylesheet
<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>