共用方式為


indexof()

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

報告輸入字串中第一次出現指定字串之以零起始的索引。

如需詳細資訊,請參閱indexof_regex()

語法

indexof(字串,比對[,開始[,長度[,出現次數]]])

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
string string ✔️ 要搜尋的來源字串。
match string ✔️ 要搜尋的字串。
start int 搜尋開始位置。 負值會透過這個許多步驟,從字串結尾位移開始搜尋位置:abs(start。)
length int 要檢視的字元位置數目。 值為 -1 表示無限長度。
occurrence int 發生次數。 預設值是 1。

注意

如果 字串比對 不是 型 string別,函式會強制將其值 string轉換成 。

傳回

以零起始的比索引位置。

  • 如果在字串找不到相符專案,則傳回 -1。
  • null如果:
    • start 小於 0。
    • 發生次數 小於 0。
    • length 小於 -1。

範例

print
 idx1 = indexof("abcdefg","cde")    // lookup found in input string
 , idx2 = indexof("abcdefg","cde",1,4) // lookup found in researched range 
 , idx3 = indexof("abcdefg","cde",1,2) // search starts from index 1, but stops after 2 chars, so full lookup can't be found
 , idx4 = indexof("abcdefg","cde",3,4) // search starts after occurrence of lookup
 , idx5 = indexof("abcdefg","cde",-5)  // negative start index
 , idx6 = indexof(1234567,5,1,4)       // two first parameters were forcibly casted to strings "12345" and "5"
 , idx7 = indexof("abcdefg","cde",2,-1)  // lookup found in input string
 , idx8 = indexof("abcdefgabcdefg", "cde", 1, 10, 2)   // lookup found in input range
 , idx9 = indexof("abcdefgabcdefg", "cde", 1, -1, 3)   // the third occurrence of lookup is not in researched range

輸出

idx1 idx2 idx3 idx4 idx5 idx6 idx7 idx8 idx9
2 2 -1 -1 2 4 2 9 -1