System.AnsiStrings.AnsiMatchText
Delphi
function AnsiMatchText(const AText: AnsiString; const AValues: array of AnsiString): Boolean;
C++
extern DELPHI_PACKAGE bool __fastcall AnsiMatchText(const System::AnsiString AText, const System::AnsiString *AValues, const int AValues_High)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.AnsiStrings.pas System.AnsiStrings.hpp |
System.AnsiStrings | System.AnsiStrings |
Description
Determines if string is in string array without case-sensitivity.
AnsiMatchText returns true if it finds a matching string in an array of strings. If the string is not found, the function returns false.
The string comparison is made without case-sensitivity and is controlled by the current user locale, as for AnsiSameText.
To make the comparison with case-sensitivity, use AnsiMatchStr.