Overview
This function returns true if the target string includes the specified substring. You can specify whether the search should be case sensitive.
Parameters
stringContains("string", "contains", caseSensitive)
String
The string to search within.
Contains
The substring to search for.
Case Sensitive
Boolean value indicating whether the search is case sensitive.
For example...
stringContains("Hello World", "world", false)
Returns true (case insensitive match).