CountMatches
Finds and counts all string matches
CountMatches("WINDOWS", "W") → 2
CountMatches("1 2 3 4 5 6", 7) → 0Inputs
CountMatches(string, search, [isCaseSensitive])
string- A text value to search insearch- A text value to search for[isCaseSensitive]- [optional:trueby default**]** - Setfalseif search should be case insensitive
Last updated
Was this helpful?