如何使用xslt修剪语句末尾的最后空格

时间:2011-12-13 12:31:29

标签: xslt-1.0

如何使用version-1.0

修剪句子中的最后一个空格

注意:它不应影响我句子中单词之间的空格。(必须在语句末尾修剪空格)

1 个答案:

答案 0 :(得分:0)

您可以使用trim FXSL功能/模板的代码。

以下是一个示例

<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'