Contains

The Contains function is used to determine the presence of a specific search text within a source text string. If the search text is found within the source text, the function returns 'True'; otherwise, it returns 'False.' The Contains function is case-sensitive. This means the search treats upper and lowercase letters differently. Be aware of case sensitivity when utilizing this function as it can impact the results based on the letter casing of the text being examined.

Syntax

Contains(source text string, search text string)

Example

Contains("Flight to New York","New York") -> returns 'True'

Contains("Flight to New York","NEW YORK") -> returns 'False'