expression contains
expression
The contains
operator evaluates to true
if the string to the left of the operator contains the string to the right of the operator as a substring. Otherwise, it evaluates to false
.
The contains
operator is case-insensitive. For case-sensitive comparison, use the csoffset
function.