Text.Contains

Syntax

Text.Contains(text as nullable text, substring as text, optional comparer as nullable function) as nullable logical

About

Detects whether text contains the value substring. Returns true if the value is found. This function doesn't support wildcards or regular expressions.

The optional argument comparer can be used to specify case-insensitive or culture and locale-aware comparisons. The following built-in comparers are available in the formula language:

Example 1

Find if the text "Hello World" contains "Hello".

Usage

Text.Contains("Hello World", "Hello")

Output

true

Example 2

Find if the text "Hello World" contains "hello".

Usage

Text.Contains("Hello World", "hello")

Output

false

Example 3

Find if the text "Hello World" contains "hello", using a case-insensitive comparer.

Usage

Text.Contains("Hello World", "hello", Comparer.OrdinalIgnoreCase)

Output

true