有没有办法使用 xslt 删除 xml 文档中元素和属性中的所有前导和尾随空格?
<Root>
<a>string </a>
<b r="another ">second </b>
</Root>
预期产出
<Root>
<a>string</a>
<b r="another">second</b>
</Root>
注意:这是一个示例 xml,我的源 xml 文档中有许多元素和属性。
如果使用normalize-space()
函数,则结果是删除所有前导和尾随空格字符的字符串。
但是,它还将任何一组中间空格字符替换为单个空格字符。
如果您不想要最后提到的效果,那么一种解决方案是使用 FXSL 1.x(完全用 XSLT 1.0 编写的 FXSL)的trim
模板函数。
下面是使用 trim
模板/函数的小示例:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:import href="trim.xsl"/>
<!-- to be applied on trim.xml -->
<xsl:output method="text"/>
<xsl:template match="/">
'<xsl:call-template name="trim">
<xsl:with-param name="pStr" select="string(/*)"/>
</xsl:call-template>'
</xsl:template>
</xsl:stylesheet>
将此转换应用于以下 XML 文档时:
<someText>
This is some text
</someText>
生成所需的正确结果:
'This is some text'