System.AnsiStrings.AnsiMatchStr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

extern DELPHI_PACKAGE bool __fastcall AnsiMatchStr(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 with case-sensitivity.

AnsiMatchStr 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 with case-sensitivity and is controlled by the current user locale, as for AnsiSameStr.

To make the comparison without case-sensitivity, use AnsiMatchText.

See Also