starts with
FEEL built-in function · String functions
starts with(string, match)
Returns true if the string begins with match.
Parameters
| Parameter | Type | Description |
|---|---|---|
| string | string | the string to test |
| match | string | the expected prefix |
Examples
starts with("foobar", "fo")
true
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).