XSLT StyleSheet XML Tutorial

File: Transform.xslt

  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xs="http://www.w3.org/2001/XMLSchema">
  
  
    Tests of XPath multiplication 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 multiplication in XPath 2.0
  9 * 3 = 27
  9 * 3.8 = 34.2
  9 * number('4') = 36
  9 * number('Q') = NaN
  9 * number(true()) = 9
  9 * number(false()) = 0