Matches

Finds if a string matches the string pattern

Matches("one word", "word") → true
Matches("Albania", "e") → false

Inputs

Matches(string, search, [isCaseSensitive])

  • string - A 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