starts-with()
This function returns "true" if text a starts with prefix text b.
Parameters
|
Parameter |
Description |
|
a |
Text. |
|
b |
Prefix text. |
Examples
|
Parameter a |
Parameter b |
Result |
|
abcdef |
abc |
true |
|
abcdef |
ABC |
false |