XSLT StyleSheet XML

File: Data.xml


  
    A
    B
    2008-12-12
  

  
    C
    D
    2008-11-11
  

  
    E
    F
    2008-10-10
  


File: Transform.xslt

  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
    
      
                  select="//text()[normalize-space(.)]" />
      
    
  
  
          select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
          select="'abcdefghijklmnopqrstuvwxyz'" />
    The input
          style="background-color: #c0c0c0;">
      
    
    was translated to
          style="background-color: #ffd700;">
      
      
    
  

Output:

   
          The input
          A
          was translated to
          A

          The input
          B
          was translated to
          B

          The input
          2008-12-12
          was translated to
          2008-12-12

          The input
          C
          was translated to
          C

          The input
          D
          was translated to
          D

          The input
          2008-11-11
          was translated to
          2008-11-11

          The input
          E
          was translated to
          E

          The input
          F
          was translated to
          F

          The input
          2008-10-10
          was translated to
          2008-10-10