substring after
FEEL built-in function · String functions
substring after(string, match)
Returns everything after the first occurrence of match; the empty string if match does not occur.
Parameters
| Parameter | Type | Description |
|---|---|---|
| string | string | the source string |
| match | string | the delimiter to search for |
Examples
substring after("foobar", "ob")
ar
Try it →
substring after("", "a")
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).