ends_with({source_str}, {search_str})
Returns a Boolean indicating whether a string ends with the search string.
ENDS_WITH() follows this syntax.
- source_str
The string to be searched.
- search_str
The string to search for within the source string.
This example returns a Boolean that confirms whether the value in the City field ends with “ale.”
| City | endValue |
|---|---|
| Henderson | false |
| Henderson | false |
| Los Angeles | false |
| Fort Lauderdale | true |
| Fort Lauderdale | true |