如何使用version-1.0
修剪句子中的最后一个空格注意:它不应影响我句子中单词之间的空格。(必须在语句末尾修剪空格)
答案 0 :(得分:0)
以下是一个示例:
<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'