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