substring()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
從來源字串擷取從某個索引到字串結尾的子字串。
您可以選擇性地指定要求的子字串長度。
語法
substring(
source,
startingIndex [,
length])
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
source | string |
✔️ | 要從中取得子字串的字串。 |
startingIndex | int |
✔️ | 所要求子字串之以零起始的起始字元位置。 如果負數,則會從來源字串結尾擷取子字串。 |
length | int |
子字串中要求的字元數。 默認行為是從 startingIndex 到來源字串的結尾。 |
傳回
來自指定字串的子字串。 子字串從 startingIndex (以零起始的) 字元位置開始,並在指定時繼續到字串結尾或長度字元。
範例
substring("123456", 1) // 23456
substring("123456", 2, 2) // 34
substring("ABCD", 0, 2) // AB
substring("123456", -2, 2) // 56