XSLT StyleSheet XML Tutorial

"//title" matches any title element anywhere in the document.
"//author" matches any author element anywhere in the document.
"/" matches the root element.
File: Data.xml

    XSL
    John Smith

File: Transform.xslt

  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    
      


        
      


      


        
      


    
    
      


        
      


      


        
      


    

Output:

John Smith

XSL