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
string
search - Text to search for
search
[isCaseSensitive] - [optional: true by default**]** - Set false if search should be case insensitive
[isCaseSensitive]
true
false