标签: xml xslt xslt-2.0
我需要将多个元素值连接到用空格分隔的新字符串中,最好的方法是什么?我正在使用xslt 2.0。
提前致谢。
答案 0 :(得分:3)
查看string-join函数。
<xsl:value-of select="string-join(/path/to[1]/nodes/text(), ' ')" />