标签: regex xslt xpath whitespace xslt-2.0
如何在XSLT 2.0中删除字符串的前导和尾随空格(因此使用XPath)。
fn:normalize-space不是解决方案,因为它也会折叠内部空间。
fn:normalize-space
答案 0 :(得分:3)
使用replace:replace(' a ', '^\s+|\s+$', '')。
replace
replace(' a ', '^\s+|\s+$', '')