ends_with()

Returns true if the string ends with the specified characters.

Syntax

ends_with(string, suffix)

Usage

Returns true if ends with suffix, otherwise returns false. String comparison is case-sensitive. If any of the parameters are null, then the function returns null. If suffix is an empty string, then the function returns null.

Example

1ends_with("FIT", "T") == true
2ends_with("FIT", "BIT") == false