subtraction and multiplication uses common syntax : Math « XSLT stylesheet « XML Tutorial






File: Data.xml

<?xml version="1.0" encoding="utf-8"?>
<data>
    <number>1</number>
    <number>3</number>
    <number>4</number>
    <number>17</number>
    <number>8</number>
    <number>11</number>
</data>

File: Transform.xslt

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

    <xsl:template match="/">
      <Paragraph>
        <xsl:value-of select="//number[1]"/>
        <xsl:text> + </xsl:text>
        <xsl:value-of select="//number[2]"/>
        <xsl:text> = </xsl:text>
        <xsl:value-of select="//number[1] + //number[2]"/>
      </Paragraph>
      <Paragraph>
        <xsl:value-of select="//number[3]"/>
        <xsl:text> - </xsl:text>
        <xsl:value-of select="//number[4]"/>
        <xsl:text> = </xsl:text>
        <xsl:value-of select="//number[3] - //number[4]"/>
      </Paragraph>
      <Paragraph>
        <xsl:value-of select="//number[5]"/>
        <xsl:text> * </xsl:text>
        <xsl:value-of select="//number[6]"/>
        <xsl:text> = </xsl:text>
        <xsl:value-of select="//number[5] * //number[6]"/>
      </Paragraph>
    </xsl:template>
</xsl:stylesheet>
Output:

<?xml version="1.0" encoding="UTF-8"?><Paragraph>1 + 3 = 4</Paragraph><Paragraph>4 - 17 = -13</Paragraph><Paragraph>8 * 11 = 88</Paragraph>








5.8.Math
5.8.1.Do calculation in select: 4 + 3.2
5.8.2.Do calculation in select: 3.2 - 4
5.8.3.Do calculation in select: 4 * 3.2 (multiply)
5.8.4.Do calculation in select: 11/3.2 (div)
5.8.5.Do calculation in select: 4 + 3.2 * 11
5.8.6.Add string and integer together
5.8.7.Math calculation
5.8.8.Calculate with variable
5.8.9.Output calculated value
5.8.10.Tests of XPath multiplication in XPath 1.0
5.8.11.Tests of XPath multiplication in XPath 2.0
5.8.12.Tests of XPath subtraction in XPath 1.0
5.8.13.Tests of XPath subtraction in XPath 2.0
5.8.14.An example of the unary minus
5.8.15.An example of the unary plus
5.8.16.subtraction and multiplication uses common syntax