Removing html tags from xml with xslt (aka string html tags with xslt)

0 comments
The technique to remove tags from xml with xslt is very creative. If you have a xml document that is like:

Lorem ipsum dolor sit amet <b> consectetur adipiscing elit </b>. Suspendisse ac ipsum eu orci accumsan dignissim. Fusce fringilla.

The script will store in the variable the items before the "<" and send to recursion the items after the ">".


 
  
   
  
 
 
 



 
 
  
   
   
   
   
    
    
   
  
  
   
  
 

Thanks to KaushaL.NET for this xslt code