concat

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

類別

字串

函式語法

concat(<parameters>)

參數

參數 類型
清單 listString
字串 字串

簽章和傳回的型別

concat(<string>,<string>)

concat(<listString>)

傳回字串。

範例

concat("Hello","World")

傳回「HelloWorld」。

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

傳回「Hello World」。

本頁內容