XsltFunctions.SubstringAfter(String, String) 方法

定义

按照 W3C 规范实现 substring-after XPath 函数。

此 API 支持产品基础结构,不能在代码中直接使用。

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

参数

s1
String

要在其中查找 s2 的字符串。

s2
String

要在 s1 中查找的字符串。

返回

String

S1 中在 s2 后出现的字符,如果 s1 不包含 s2,则为空字符串。

注解

在 s1 (s1) 中查找子字符串 (s2) ,并返回 s1 中在 s2 后发生的字符。

适用于