我正在使用以下模板从我的xml
内容中删除 html 标签。它为少数xml
s 工作,但为少数 s 失败,xml
由于递归调用,堆栈溢出错误。任何人都可以提供相同的优化解决方案吗?
<xsl:template name="strip-tags">
<xsl:param name="text"/>
<xsl:choose>
<xsl:when test="contains($text, '<')">
<xsl:value-of select="substring-before($text, '<')"/>
<xsl:call-template name="strip-tags">
<xsl:with-param name="text" select="substring-after($text, '>')"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>