XsltFunctions.SubstringAfter(String, String) Method

Definition

Implements substring-after XPath function according to the W3C specification.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static System::String ^ SubstringAfter(System::String ^ s1, System::String ^ s2);
public static string SubstringAfter (string s1, string s2);
static member SubstringAfter : string * string -> string
Public Shared Function SubstringAfter (s1 As String, s2 As String) As String

Parameters

s1
String

The string in which to locate s2.

s2
String

The string to locate in s1.

Returns

The characters in s1 that occur after s2, or the empty string if s1 does not contain s2.

Remarks

Locates a substring (s2) within a string (s1), and returns the characters in s1 that occur after s2.

Applies to