BT编程语言文档
concat
连接两个或多个字符串,并返回新的字符串语法 Str.concat(...string:Str)
...string:必填,多参数
str1 = 'hello' str2 = 'world' println str1.concat(str2) // 输出:'helloworld' println str1.concat(' ', str2, '!') // 输出:'hello world!'语法 Str.concat(...string:Str)
...string:必填,多参数
str1 = 'hello' str2 = 'world' println str1.concat(str2) // 输出:'helloworld' println str1.concat(' ', str2, '!') // 输出:'hello world!'