共用方式為


countof()

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

計算字串中子字串的出現次數。 純字串相符專案可能會重疊;regex 相符專案不相符。

語法

countof(來源,搜尋 [, kind])

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
source string ✔️ 要搜尋的值。
search string ✔️ 要符合來源內部的值或正則表達式
種類 string normalregex。 預設值為 normal

傳回

搜尋值可在來源字串中比對的次數。 純字串相符專案可能會重疊;regex 相符專案不相符。

範例

公式呼叫 結果
countof("aaa", "a") 3
countof("aaaa", "aa") 3 (不是 2!)
countof("ababa", "ab", "normal") 2
countof("ababa", "aba") 2
countof("ababa", "aba", "regex") 1
countof("abcabc", "a.c", "regex") 2