expression ends
with
expression
The ends with
operator evaluates to true
if the string to the left of the operator ends with the string to the right of the operator. Otherwise, it evaluates to false
.
The ends with
operator is case-insensitive. For case-sensitive comparison, use the csoffset
function.
contains
, is in
, starts with
, does not contain
, is not in
, does not start with
, does not end with