translate()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
將一組字元 ('searchList') 取代為指定字串中的另一組字元 ('replacementList')。 函式會搜尋 『searchList』 中的字元,並以 『replacementList』 中的對應字元取代它們
語法
translate(
searchList replacementList,
,
來源)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
searchList | string |
✔️ | 應該取代的字元清單。 |
replacementList | string |
✔️ | 應該取代 searchList 中字元的字元清單。 |
source | string |
✔️ | 要搜尋的字串。 |
傳回
將 'replacementList' 中所有出現的字元取代為 'searchList' 中對應的字元之後,source
範例
輸入 | 輸出 |
---|---|
translate("abc", "x", "abc") |
"xxx" |
translate("abc", "", "ab") |
"" |
translate("krasp", "otsku", "spark") |
"kusto" |