System.AnsiStrings.MatchText

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function MatchText(const AText: AnsiString; const AValues: array of AnsiString): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall MatchText(const System::AnsiString AText, const System::AnsiString *AValues, const int AValues_High)/* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
System.AnsiStrings.pas
System.AnsiStrings.hpp
System.AnsiStrings System.AnsiStrings

説明

文字列が文字列の配列内にあるかどうかを判定します。

MatchText は、文字列の配列内に一致する文字列がある場合、true を返します。文字列が見つからない場合、この関数は false を返します。

文字列の比較は、AnsiSameText と同様に、大文字と小文字を区別しないで行われ、現在のユーザーのロケールによって制御されます。

この関数は、AnsiMatchText と同じです。

大文字と小文字を区別して比較する場合は、MatchStr を使用します。

関連項目