[Home] [By Thread] [By Date] [Recent Entries]
Start with a recursive copy template then match the text nodes and
process the new lines, for instance replace them with spaces:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="text()">
<xsl:value-of select="translate(., ' ',' ')"/>
</xsl:template>
</xsl:stylesheet>Best Regards, George --------------------------------------------------------------------- George Cristian Bina - http://aboutxml.blogspot.com/ <oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger http://www.oxygenxml.com Senthilkumaravelan K wrote: Hi I want to flatten the XML node structure to single line, I tried indent=no and it does not work for me. Please any suggestions. I use the following xslt
|

Cart



