FindMatchesOfString
Finds all matches of string pattern in a string value
FindMatchesOfString("Hello World","l") → ["l","l","l"]
FindMatchesOfString("text text","ext") → ["ext","ext"]Inputs
FindMatchesOfString(string, search, [isCaseSensitive])
string- Any text value to search insearch- Text to search for[isCaseSensitive]- [optional:trueby default**]** - Setfalseif search should be case insensitive
Last updated
Was this helpful?