我正在尝试从xslt1.0中的字符串中删除break标记。我尝试使用translate(s,'& ltbr>',''),其中s是字符串值,但也删除了粗体标记。还试过一个模板,但没有运气。 我的问题是如何只删除break标签。
所以字符串:
<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>
答案 0 :(得分: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
祝你好运, 彼得