2

有没有一种方法可以使用 xslt 删除 xml 文档中元素和属性中的所有前导和尾随空格?

<Root>
  <a>string    </a>
  <b r="another   ">second    </b>
</Root>

预期产出

<Root>
  <a>string</a>
  <b r="another">second</b>
</Root>

注意:这是一个示例 xml,我的源 xml 文档中有许多元素和属性。

4

1 回答 1

2

如果您使用该normalize-space()函数,则结果是删除了所有前导和尾随空白字符的字符串

但是,它也用单个空格字符替换任何中间空白字符组。

如果您不想要最后提到的效果,那么一种解决方案是使用trimFXSL 1.x 的模板功能(FXSL 完全用 XSLT 1.0 编写)。

下面是一个使用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'
于 2012-08-14T11:28:23.997 回答