共用方式為


StringType.StrLikeText(String, String) 方法

定義

比較參數 SourcePattern,並使用文字比較,傳回與 Like 運算子相同的結果。

此 API 支援此產品基礎結構,但無法直接用於程式碼之中。

public:
 static bool StrLikeText(System::String ^ Source, System::String ^ Pattern);
public static bool StrLikeText (string? Source, string? Pattern);
public static bool StrLikeText (string Source, string Pattern);
static member StrLikeText : string * string -> bool
Public Shared Function StrLikeText (Source As String, Pattern As String) As Boolean
Public Function StrLikeText (Source As String, Pattern As String) As Boolean

參數

Source
String

必要。 任何 String 運算式。

Pattern
String

必要。 符合<Like 運算子>中所描述模式比對慣例的任何 String 運算式。

傳回

Boolean 值,其指出字串是否符合模式。 如果字串中的值滿足模式中所含的模式,結果為 True。 如果字串不滿足模式,結果為 False。 如果字串和模式都是空字串,則結果為 True

備註

此方法會比較參數 Source 和 , Pattern 並傳回與 Like 運算符相同的結果。 結果是值, Boolean 指出字串是否符合模式。

這個方法類似於 StrLike ,不同之處在於它一律會根據系統 LocaleID 值所決定的不區分大小寫的文字排序順序來執行比較。

適用於