substring-after
This function returns the substring of the input string that follows the first occurrence of the search string, or the empty string if the input string does not contain the search string.
Signature:
substring-after(inputString as string,searchString as string)
Arguments:
-
inputString
: The input string. -
searchString
: The string for which to search.
For example,
substring-after('1999/04/01','/')
returns '04/01
.