共用方式為


strcat_delim()

適用於:✅Microsoft網狀架構Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel

使用指定的分隔符做為第一個自變數,串連 2 到 64 個自變數。

語法

strcat_delim(delimiterargument1argument2[ , argumentN])

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
delimiter string ✔️ 要作為串連中分隔符的字串。
argument1 ... argumentN 純量 ✔️ 要串連的表達式。

注意

如果自變數不是字串類型,則會強制轉換成字串。

傳回

自變數會串連至具有 分隔符的單一字串。

範例

print st = strcat_delim('-', 1, '2', 'A', 1s)

輸出

st
1-2-A-00:00:01