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

Priorities of implicit templates

Implicit templates have lower priorities than any explicitly declared templates.

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="/aaa">
                  <xsl:apply-templates  select="* | @*"/>
            </xsl:template>

            <xsl:template  match="ccc | ccc/@b"
                        priority="-10000">
                  <CCC>
                        <xsl:value-of  select="."/>
                  </CCC>
            </xsl:template>

            <xsl:template  match="* | @*"
                        priority="-10000000">
                  <ANY>
                        <xsl:value-of  select="."/>
                  </ANY>
            </xsl:template>

      </xsl:stylesheet>
XML

      <aaa>
            <bbb  b="111">BBB</bbb>
            <ccc  c="222">CCC</ccc>
      </aaa>
Output

      <ANY>BBB</ANY>
      <CCC>CCC</CCC>


Previous chapter: Context
Next chapter: Arithmetics
Previous page: Implicit passing of parameters
Next page: Implicit templates for processing instructions and comments