number level="any" from="book" count="chapter" format="1." : number « XSLT stylesheet « XML






number level="any" from="book" count="chapter" format="1."


File: Data.xml
<?xml version="1.0"?>
<book>
  <title>XSLT Topics</title>
  <chapter>
    <title>title 1</title>
  </chapter>
  <chapter>
    <title>title 2</title>
  </chapter>
  <chapter>
    <title>title 3</title>
  </chapter>
  <chapter>
    <title>title 4</title>
  </chapter>
  <chapter>
    <title>title 5</title>
  </chapter>
  <chapter>
    <title>title 6</title>
  </chapter>
  <chapter>
    <title>title 7</title>
  </chapter>
</book>



File: Transform.xslt

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:output method="text"/>

  <xsl:template match="book">
    <xsl:for-each select=".//sect3">
      <xsl:number level="any" from="book" count="chapter" format="1."/>
      <xsl:number level="any" from="chapter" count="sect1" format="1."/>
      <xsl:number level="any" from="sect1" count="sect2" format="1."/>
      <xsl:number level="any" from="sect2" count="sect3" format="1. "/>
      <xsl:value-of select="title"/>
      <xsl:text>&#xA;</xsl:text>
    </xsl:for-each>
  </xsl:template>

</xsl:stylesheet>

 








Related examples in the same category

1.Add number list to the output
2.Output number and count
3.Output Number from any level
4.number column
5.Illustrates use of xsl:number element
6.number count="name" format=" 1. "
7.number level="multiple" count="*" from="data" format="1.1.1 "
8.number value="1000000" grouping-size="3" grouping-separator="."
9.format number by locale
10.number from="section" level="multiple" count="section | item" format=" a "
11.number format=" " grouping-size="3" grouping-separator=","
12.number format=" 1. "
13.number level="multiple" count="section | item" format="i. a. "
14.number count="manufacturer|car" level="multiple" format="1.1. "
15.number count="manufacturer" level="multiple" format="1."
16.number count="car" level="single" format="w"
17.number level="multiple" count="chapter|sect1|sect2|sect3" format="1.1.1.1. "
18.number level="any" count="chapter|sect1|sect2|sect3" format="1. "
19.number level="single" count="chapter|sect1|sect2|sect3" format="1.1.1.1. "
20.number level="multiple" count="chapter|sect1|sect2" format="I-A-i: "