Returns true if the string specified by the string argument starts with the value of the start argument.
starts-with(string as string, start as string) -> Boolean |
Name |
Type |
Description |
|---|---|---|
string |
string |
The input string. |
start |
string |
The string value to check for. |
The following expression returns true:
starts-with('cat', 'c') |
The following expression returns false:
starts-with('cat', 'b') |