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

ParameterTypeDescription
stringstringthe source string
matchstringthe delimiter to search for

Examples

substring after("foobar", "ob")
substring after("", "a")

Related functions

substring before · split

Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).