gpt4 book ai didi

string - 如何在TCL中组合两个字符串?

转载 作者:行者123 更新时间:2023-12-01 15:11:49 26 4
gpt4 key购买 nike

我在 tcl 中有以下代码:

set string1 "do the firstthing"
set string2 "do the secondthing"

如何使两个字符串组合在一起 "do the firstthing do the secondthing"

最佳答案

您可以使用 append 像这样:

% set string1 "do the firstthing"
% set string2 "do the secondthing"
% append string1 " " $string2
% puts $string1
do the firstthing do the secondthing

你可以把它们放在另一个旁边...
% set string1 "do the firstthing"
% set string2 "do the secondthing"
% puts "$string1 $string2"
do the firstthing do the secondthing

或者,如果您的字符串在列表中,您可以使用 join 并指定连接器...
% set listofstrings [list "do the firstthing" "do the secondthing"]
% puts [join $listofthings " "]
do the firstthing do the secondthing

关于string - 如何在TCL中组合两个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18106546/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com