starts-with( a, b )
Group |
Returns true if the text a starts with text b.
Description of Parameters
Parameter |
Description |
a |
Text. |
b |
Prefix text. |
Examples
Parameter a |
Parameter b |
Result |
abcdef |
abc |
true |
abcdef |
ABC |
false |