Substring After function

The Substring After function extracts all the characters in a string starting after the first occurrence of a specified substring (one or more characters) through the end of the string.

Parameter: string

The string to extract a substring from. This can come from a source node, the result of another function, or a value you specify.

Parameter: string

The character to use as a starting point for the extraction. The first occurrence of the character is used as the starting point. This parameter can come from a source node, the result of another function, or a value you specify.

Returns: string

A substring of  the first parameter which starts after the first occurrence of the specified start string through the end of the string. If the start string is not present, returns an empty string.

Example

substring-after('12/31/1999','/') = '31/1999',