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 in

  • search - Text to search for

  • [isCaseSensitive] - [optional: true by default**]** - Set false if search should be case insensitive

Last updated