Previous | Next | Indexes
Zvon > Tutorials > XSLT 2.0 Tutorial > Sequences (2/10) >

Sequences of several types

Different types of values can be combined in a sequence.

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="bbb[2],12,'c',bbb[1]"/>
                  </xxx>
                  <yyy>
                        <xsl:value-of  select="12,'a',false(),14=14"/>
                  </yyy>
            </xsl:template>

      </xsl:stylesheet>
XML

      <aaa>
            <bbb>b1</bbb>
            <bbb>b2</bbb>
            <bbb>b3</bbb>
      </aaa>
Output

      <xxx>b2 12 c b1</xxx>
      <yyy>12 a false true</yyy>


Previous chapter: Templates - basic usage
Next chapter: Sequence Combinations
Previous page: Sequences and comma operator
Next page: A sequence from sequences