ENDSWITH
Determine if a string value ends with a letter or phrase
Example Usage
ENDSWITH("ABC123", "3") -> true
ENDSWITH("ABC123", "23") -> true
ENDSWITH("ABC123", "7") -> false
Overview
Function signature
ENDSWITH(value, phrase)
Category
Logical
Return data type
bool
Arguments
Name | DataType | List Options | Description |
---|---|---|---|
value | string | The string to search at the end for phrase | |
phrase | string | The character or phrase to search for at the end of value |