concat

串連兩個字串參數或字串清單。

類別

字串

函式語法

concat(<parameters>)

參數

參數 類型
清單 listString
字串 字串

簽名和返回類型

concat(<string>,<string>)

concat(<listString>)

傳回字串。

範例

concat("Hello","World")

返回"HelloWorld"。

concat(["Hello"," ","World"])

返回"Hello World"。

本頁內容