Previous | Next | Indexes
Zvon > Tutorials > XSLT 2.0 Tutorial > Named-Templates (3/4) >

Naming match templates

The element xsl:template can bear both match and name attribute.

XSLT

      <xsl:stylesheet
                  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                  version="2.0">
            <xsl:output  method="xml"
                        indent="yes"
                        omit-xml-declaration="yes"/>

            <xsl:template  match="/">
                  <xsl:apply-templates  select="*"/>
            </xsl:template>

            <xsl:template  match="bbb"
                        name="x">
                  <xxx>
                        <xsl:value-of  select="name()"/>
                        <xsl:text>: </xsl:text>
                        <xsl:value-of  select="@id"/>
                  </xxx>
            </xsl:template>

            <xsl:template  match="ccc">
                  <xsl:call-template  name="x"/>
            </xsl:template>

      </xsl:stylesheet>
XML

      <aaa>
            <bbb  id="id1"/>
            <ccc  id="id2"/>
      </aaa>
Output

      <xxx>bbb: id1</xxx>
      <xxx>ccc: id2</xxx>


Previous chapter: Axes
Next chapter: Variables and Parameters
Previous page: Context of named templates
Next page: Parameters of named templates