XsltFunctions.SubstringAfter(String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
根據 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
中尋找的字串。
傳回
s1 (出現在 s2 之後) 中的字元,如果 s1 不包含 s2 則為空字串。
備註
在字串 (s1) 內找出子字串 (s2) ,並傳回 s2 之後發生的 s1 字元。