Variable scope : Variable « XSLT stylesheet « XML






Variable scope



File: Data.xml


<wine grape="Cabernet">
  <winery>shop 1</winery>
  <product>product 1</product>
  <year>1996</year>
  <price>11.99</price>
</wine>

File: Transform.xslt
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">
  <xsl:output method="html" />
  <xsl:template match="wine">

    <xsl:variable name="bodyTextSize">10pt</xsl:variable>

    <xsl:apply-templates select="winery" />
    <i>
      <font size="{$bodyTextSize}">
        <xsl:apply-templates select="product" />
      </font>
    </i>
    <br />
    <font size="{$bodyTextSize}">
      <xsl:apply-templates select="year" />
    </font>
    <br />
    <font size="{$bodyTextSize}">
      <xsl:apply-templates select="price" />
    </font>
    <br />

  </xsl:template>
  <xsl:template match="winery">

    <xsl:variable name="bodyTextSize">12pt</xsl:variable>

    <b>
      <font size="{$bodyTextSize}">
        <xsl:apply-templates />
        <xsl:text> </xsl:text>
        <xsl:value-of select="../@grape" />
      </font>
    </b>
    <br />

  </xsl:template>

</xsl:stylesheet>

Output:

<b><font size="12pt">shop 1 Cabernet</font></b><br><i><font size="10pt">product 1</font></i><br><font size="10pt">1996</font><br><font size="10pt">11.99</font><br>

 








Related examples in the same category

1.Define variable and set value
2.Define variable
3.Output variable
4.Define a variable and then use it in for loop
5.Assign value from variable to attribute
6.Use for-each to loop through variable
7.Use constant value from variable
8.Fill variable with the returned value from a function
9.substring function with variable
10.Reference variable three times
11.Compare variable
12.Define number type variable
13.Math calculation
14.value-of and math calculation
15.Variable with number type
16.number level="any" count="chapter|sect1|sect2|sect3" format="Ww - " ordinal="yes"
17.number level="any" count="chapter|sect1|sect2|sect3" format="w - " lang="de"
18.number level="any" count="chapter|sect1|sect2|sect3" format="w - " lang="pl"
19.Thai numbering