substring-after Function

MSXML 5.0 SDK

Microsoft XML Core Services (MSXML) 5.0 for Microsoft Office - XPath Reference

substring-after Function

Returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string.

string substring-after(string, string)

Remarks

If an argument is not of type string, it is first converted to a string and then evaluated.

The following function call returns "04/01":

substring-after("1999/04/01","/")

The following function call returns "99/04/01":

substring-after("1999/04/01","19")

The following function call returns an empty string "":

substring-after("1999/04/01","2")

See Also

Data Types in Schemas | XDR Schema Data Types Reference | XML Data Types Reference