EndsWith
Returns true if a string ends with a substring.
Usage
EndsWith(string, substring)
string (required) The text to search.
substring (required) The text to search with.
NOTE: EndsWith is case-sensitive. To create a search that is not case sensitive, you can combine EndsWith with Lower.
Example
EndsWith("Jane Doe", "oe")
- Returns TRUE