连接超过 2 个字符串

Concat more than 2 strings

我想在 XSLT 中连接 2 个以上的字符串,有没有比 concat(str1, concat(str2, str3)) 更方便的方法?

感谢您的帮助。

concat() 函数有多个参数:

concat(str1, str2, str3)

无需嵌套多次出现的函数。