结合字符串

时间:2014-11-12 14:05:09

标签: javascript google-apps-script google-sheets string-concatenation

我是Google Apps脚本的新手,正在尝试合并一系列字符串。我有两个字符串需要在输入的单元格之前和之后。

if B4 = "string2"以下行的结果应为"string1 string2 string3""string1 " + "B4" + " string3"

String1和string3将始终相同,因此我可以将它们设置为变量,但我不知道如何将它们连接在一起。它们需要组合并输出到Sheets中的单元格。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

字符串很容易在JavaScript中汇编,只需使用+

添加它们

从你的例子:

"string1"+" "+string2+" "+"string3"

或者,您可以使用完全相同的.concat method