Operators

is of

Supported By

Syntax

expression is of expression

Description

The is of operator evaluates to true if the string to the right of the operator contains the string to the left of the operator as a substring. Otherwise, it evaluates to false.

Note

The is of operator is case-insensitive. For case-sensitive comparison, use the csoffset function.

Synonym

is in

See Also

contains, starts with, ends with, does not contain, is not in, does not start with, does not end with