0

我正在尝试从 xslt1.0 中的字符串中删除中断标记。我尝试使用 translate(s,'<br>','') ,其中 s 是字符串值,但这也删除了粗体标签。还尝试了一个模板,但没有运气。我的问题是如何仅删除中断标签。

所以字符串:

<b>trying</b> to remove <br> tags only <br> and not <b>bold tags</b>

将被解析为:

<b>trying</b> to remove tags only and not <b>bold tags</b>
4

1 回答 1

0

这个 XSLT:

    <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="node()|@*">
    <xsl:copy>
        <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
</xsl:template>

<xsl:template match=
    "br[not(@*|*|comment()|processing-instruction()) 
    and normalize-space()=''
    ]"/>
</xsl:stylesheet>

应用于这个格式良好、有效的 XML:

<?xml version="1.0" encoding="UTF-8"?>
<list>
<b>trying</b> to remove <br/> tags only <br/> and not <b>bold tags</b>
</list>

给出这个结果:

<list>
<b>trying</b> to remove  tags only  and not <b>bold tags</b>
</list>

另请参阅 Dimitre 的解决方案: Removing empty tags from XML via XSLT

于 2012-08-23T15:05:22.303 回答