Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
連結されている文字列の間に空白を入れずに2つの文字列を連結したいと思います。しかし、以下のコマンドを使用すると、間に空白が追加された文字列が連結されます。空白を追加せずに文字列を連結するにはどうすればよいですか?
set A "Test" set B "data" set C $A$B
現在の出力:
テストデータ
これに似た出力が必要です:
試してみると、次のように機能します。
$ tclsh % set A "Test" Test % set B "data" data % set C $A$B Testdata
A と $ の間に誤って制御文字を入力した可能性がありますか?