如果元素值是特定的字符串值,我只想清除元素值
输入xml
<A>
<B>
<C>BOLD</C>
</B>
</A>
期望的输出
<A>
<B>
<C/>
</B>
</A>
我的 xslt 看起来像下面这不起作用它只会清除所有内容
<xsl:template match="A/B/C/text()">
<xsl:if test="text()='BOLD'">
<xsl:text></xsl:text>
</xsl:if>
</xsl:template>
<!--Copy the rest of the document as it is-->
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
请帮忙谢谢