StringType.StrLikeBinary(String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
比較參數 Source
和 Pattern
,並使用二進位碼比較,傳回與 Like
運算子相同的結果。
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。
public:
static bool StrLikeBinary(System::String ^ Source, System::String ^ Pattern);
public static bool StrLikeBinary (string? Source, string? Pattern);
public static bool StrLikeBinary (string Source, string Pattern);
static member StrLikeBinary : string * string -> bool
Public Shared Function StrLikeBinary (Source As String, Pattern As String) As Boolean
Public Function StrLikeBinary (Source As String, Pattern As String) As Boolean
參數
- Source
- String
必要。 任何 String
運算式。
- Pattern
- String
必要。 符合<Like 運算子>中所描述模式比對慣例的任何 String
運算式。
傳回
Boolean
值,其指出字串是否符合模式。 如果字串中的值滿足模式中所含的模式,結果為 True
。 如果字串不滿足模式,結果為 False
。 如果字串和模式都是空字串,則結果為 True
。
備註
此方法會比較參數 Source
,並 Pattern
傳回與 Like 運算符相同的結果。 結果是布爾值,指出字串是否符合模式。
這個方法類似於 StrLike ,不同之處在於它一律會執行區分大小寫的二進位比較。