Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
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