标签: tcl
假设我有一个变量
set var {H}
我该怎么做呢
var = var + "ello";
上面的输出是Hello
答案 0 :(得分:3)
您可以使用追加:
append var "ello"