strip space from elements : strip space « XSLT stylesheet « XML Tutorial






File: Data.xml
<?xml version="1.0" encoding="UTF-8"?>
<review>
  <comment>
   test
  </comment>
</review>


File: Transform.xslt


<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="text"/>
  <xsl:strip-space elements="name email author review"/>
  
  <xsl:template match="comment">
    <xsl:value-of select="normalize-space(.)"/>
  </xsl:template>
</xsl:stylesheet>

Output:

test








5.29.strip space
5.29.1.strip space from elements
5.29.2.strip-space elements="colors"
5.29.3.strip-space elements="*"