The Contains()
keyword checks if a string contains another string. This check is not case-sensitive and ignores diacritics.
Syntax
Contains(string_a, string_b)
Returns
Returns true
if string_a contains string_b.<br>
Returns false
if string_a does not contain string_b
Parameters
string_a
and string_b
– text strings
Example
Contains("Flower", "Lowe")
/* returns True, the check is not case sensitive */