#author("2023-09-25T00:33:40+09:00","default:tosiaki","tosiaki")
#author("2023-09-25T00:34:12+09:00","default:tosiaki","tosiaki")
[[書き比べスクリプト・リファレンス]]


* PHP [#e79eddd5]
結合演算子 '.' もしくは、結合代入演算子 '.=' を使う。

 $a = $b . "ABC"l 
 $a = $b . "ABC"l
 $a .= "DEF";



* TCL/TK [#t8a83995]

 set a "123"
 set b "456"
 append c $a $c

こんなこともできる

 set a "123"
 puts "$a 456"

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS