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:true
by default**]** - Setfalse
if search should be case insensitive