XSLT StyleSheet XML Tutorial

File: Data.xml
File: Transform.xslt

                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:xs="http://www.w3.org/2001/XMLSchema">
  
  
    Tests of XPath subtraction in XPath 2.0
       9 - 3 = 
    
       9 - 3.8 = 
    
       9 - number('4') = 
    
       9 - number('Q') = 
    
       9 - number(true()) = 
    
       9 - number(false()) = 
    
  

Output:
Tests of XPath subtraction in XPath 2.0
  9 - 3 = 6
  9 - 3.8 = 5.2
  9 - number('4') = 5
  9 - number('Q') = NaN
  9 - number(true()) = 8
  9 - number(false()) = 9