Previous | Next | Indexes
Zvon > Tutorials > XSLT 2.0 Tutorial > Value-of (3/6) >

Numbers and separators

Numeric values are automatically transformed to strings on output and so they can be used in the same way.

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:value-of  select="1 to 6"/>
                  </xxx>
                  <yyy>
                        <xsl:value-of  select="1 to 6"
                                    separator=" - "/>
                  </yyy>
            </xsl:template>

      </xsl:stylesheet>
XML

      <aaa/>
Output

      <xxx>1 2 3 4 5 6</xxx>
      <yyy>1 - 2 - 3 - 4 - 5 - 6</yyy>


Previous chapter: Sequence Combinations
Next chapter: Modes
Previous page: Separators between text nodes generated by value-of
Next page: Alternative to select attribute for xsl:value-of