STARTSWITH
Determines whether a given string begins with a specified substring
STARTSWITH(string
, substring
)
Determines whether the given string
starts with the specified substring
Arguments
Argument | Description |
| String(s) to search for |
| Substring(s) to search for at the beginning of |
Output
Returns True if the string starts with the specified substring
, returns False otherwise
Example
Last updated