Hi All
I am new to XSLT development and have stuck at simple but essential point.
I want to remove the content which is in between two specific comment tag
<!--E-->Text which need to remove<!--/E-->
I do try with the given below code
<xsl:template match="comment()">
<xsl:text disable-output-escaping="yes"><</xsl:text><xsl:value-of select="."><xsl:text disable-output-escaping="yes">></xsl:text>
</xsl:template>
<xsl:template match="E"/>
But it won't seem to work.