STARTSWITH
Determine if a string value starts with a letter or phrase
Example Usage
STARTSWITH("ABC123", "A") -> true
STARTSWITH("ABC123", "AB") -> true
STARTSWITH("ABC123", "7") -> false
Overview
Function signature
STARTSWITH(value, phrase)
Category
Logical
Return data type
bool
Arguments
Name | DataType | List Options | Description |
---|---|---|---|
value | string | The string to search on | |
phrase | string | The phrase to search at the start of value; can be one or more characters |