Previous | Next | Indexes
Zvon > Tutorials > XSLT 2.0 Tutorial > Implicit behaviour (4/10) >

Implicit match of root element

Root element is just an element. If an explicit template is not found the implicit one is used. In this example implicit templates for aaa, bbb, and ccc are used, only for ddd an explicit template is given.

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="ddd">
                  <DDD>
                        <xsl:value-of  select="."/>
                  </DDD>
            </xsl:template>

      </xsl:stylesheet>
XML

      <aaa>
            <bbb>
                  <ccc>CCC</ccc>
                  <ddd>111</ddd>
            </bbb>
      </aaa>
Output
CCC
      <DDD>111</DDD>


Previous chapter: Context
Next chapter: Arithmetics
Previous page: Implicit templates
Next page: Implicit templates and modes