var Var1= 'this sentence'
var Var2 ='new sentence'
我想要的输出是:
this sentencenew sentence
我必须添加这句话才能提交我的问题。
修改:我知道答案中分享了这些方法我只是注意到我的问题太简单了我会调整我的问题:
var link = 'https://thisIsAlink'
var line = 'this is a line'
我所做的是
var full_path = session.send(link + line)
我得到的输出:https://thisIsAlink this is a line
我想要的输出:https://thisIsAlinkthis is a line
答案 0 :(得分:0)
Var1 = 'this sentence'
Var2 = 'new sentence'
Var2 += Var1
这个输出是:新句子这句话 如果你只想切换contat,你会得到相反的