System.StrUtils.MatchStr

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

Delphi

function MatchStr(const AText: string; const AValues: array of string): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall MatchStr(const System::UnicodeString AText, const System::UnicodeString *AValues, const System::NativeInt AValues_High)/* overload */;

プロパティ

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

説明

MatchStr は、配列 AValues 内の任意の文字列が AText で指定された文字列と一致するかどうかを判断します。その際、大文字小文字を区別して比較します。配列内に少なくとも 1 つ一致する文字列が存在する場合は true を返します。一致する文字列が存在しない場合は false を返します。

大文字小文字を区別しないで比較する場合は、MatchText ルーチンを使用します。

関連項目