Hi,
I found one link :
http://help.hannonhill.com/discussio...ml-tag-in-xslt
<code>
<xsl:template name="removeTag">
<xsl:param name="html"/>
<xsl:param name="tag"/>
<xsl:choose>
<xsl:when test="contains($html, concat('<',$tag))">
<xsl:value-of select="substring-before($html, concat('<',$tag))"/>
<xsl:call-template name="removeTag">
<xsl:with-param name="html" select="substring-after($html, '>')"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$html"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</code>
But it strips all the tags.Can anyone help me in removing only one <a> tag from html.
Thanks