Functions

ENDSWITH

Returns whether the string ends with the specified search text.

Syntax

bool ENDSWITH(string searchText, string value)

Inputs

Object Data Type Description
searchText String The string to find.
value String The string to find it in.

Example

ENDSWITH("ing",ProductName)

Will return true for all products ending with "ing" and false for those that do not.