Returns whether the string ends with the specified search text.
bool ENDSWITH(string searchText, string value)
| Object | Data Type | Description |
|---|---|---|
| searchText | String | The string to find. |
| value | String | The string to find it in. |
ENDSWITH("ing",ProductName)
Will return true for all products ending with "ing" and false for those that do not.