XsltFunctions.StartsWith(String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
根據 W3C 規格 (英文) 實作 starts-with
XPath 函式。
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。
public:
static bool StartsWith(System::String ^ s1, System::String ^ s2);
public static bool StartsWith (string s1, string s2);
static member StartsWith : string * string -> bool
Public Shared Function StartsWith (s1 As String, s2 As String) As Boolean
參數
- s1
- String
其開頭要與 s2
比較的字串。
- s2
- String
要與 s1
的開頭相比較的字串。
傳回
如果第一個引數字串以第二個引數字串為開始,則會傳回 true
,否則傳回 false
。