该函数normalize-space
删除前导和尾随空格,并用单个空格替换空白字符序列。如何在 XSLT 1.0 中只用一个空格替换空白字符序列?例如"..x.y...\n\t..z."
(为了便于阅读,空格替换为点)应该变成".x.y.z."
.
问问题
2693 次
2 回答
7
使用这个 XPath 1.0 表达式:
concat(substring(' ', 1 + not(substring(.,1,1)=' ')),
normalize-space(),
substring(' ', 1 + not(substring(., string-length(.)) = ' '))
)
为了验证这一点,进行以下转换:
<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="text()">
<xsl:value-of select=
"concat(substring(' ', 1 + not(substring(.,1,1)=' ')),
normalize-space(),
substring(' ', 1 + not(substring(., string-length(.)) = ' '))
)
"/>
</xsl:template>
</xsl:stylesheet>
应用于此 XML 文档时:
<t>
<t1> xxx yyy zzz </t1>
<t2>xxx yyy zzz</t2>
<t3> xxx yyy zzz</t3>
<t4>xxx yyy zzz </t4>
</t>
产生想要的正确结果:
<t>
<t1> xxx yyy zzz </t1>
<t2>xxx yyy zzz</t2>
<t3> xxx yyy zzz</t3>
<t4>xxx yyy zzz </t4>
</t>
于 2011-02-18T05:28:27.767 回答
2
如果没有 Becker 的方法,您可以使用一些不鼓励的字符作为标记:
translate(normalize-space(concat('',.,'')),'','')
注意:三个函数调用...
或使用任何字符但重复某些表达式:
substring(
normalize-space(concat('.',.,'.')),
2,
string-length(normalize-space(concat('.',.,'.'))) - 2
)
在 XSLT 中,您可以轻松地声明一个变量:
<xsl:variable name="vNormalize" select="normalize-space(concat('.',.,'.'))"/>
<xsl:value-of select="susbtring($vNormalize,2,string-length($vNormalize)-2)"/>
于 2011-02-18T17:42:53.507 回答