我知道print()会很有用但是如何合并或连接两个字符串变量。 喜欢打印("" + str1 +"" + str2)
答案 0 :(得分:8)
在飞镖中有很多字符串选项。
对于连接,您可以执行以下操作:
'hello $myVariable'
"hello ${myVariable.myProperty}"
'hello ' 'world'
(仅适用于字符串文字)'hello' + myVariable
因此,在您的情况下,您可以执行print(" $str1 $str2")
在这里使用$ var而不是$ {var}
答案 1 :(得分:4)
这更像是一个飞镖问题。 您可以使用以下方式实现:
print('Something ${string1} something more ${string2} even more');