System.AnsiStrings.AnsiIndexText

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function AnsiIndexText(const AText: AnsiString; const AValues: array of AnsiString): Integer;

C++

extern DELPHI_PACKAGE int __fastcall AnsiIndexText(const System::AnsiString AText, System::AnsiString const *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

Look for string in string array without case-sensitivity.

AnsiIndexText returns the index of a matching string in an array of strings. If the string is not found, the function returns -1.

The string comparison is made without case-sensitivity and is controlled by the current user locale, as for AnsiSameText.

Use AnsiIndexStr to search strings with case-sensitivity.

See Also