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

Implicit template for attributes

Implicit template for attributes converts attribute value to a string and sends them to output.

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

            <xsl:template  match="@b">
                  <bbb>
                        <xsl:value-of  select="string(.)"/>
                  </bbb>
            </xsl:template>

      </xsl:stylesheet>
XML

      <aaa  a="1">
            <bbb  b="2"/>
            <ccc  c="3"/>
      </aaa>
Output

      <xxx>1</xxx>
      <yyy>
            <bbb>2</bbb>3
      </yyy>


Previous chapter: Context
Next chapter: Arithmetics
Previous page: Implicit templates and modes
Next page: Implicit templates for text nodes