System.StrUtils.IndexStr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IndexStr(const AText: string; const AValues: array of string): Integer;

C++

extern DELPHI_PACKAGE int __fastcall IndexStr(const System::UnicodeString AText, const System::UnicodeString *AValues, const int AValues_High)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.StrUtils.pas
System.StrUtils.hpp
System.StrUtils System.StrUtils

Description

IndexStr determines if any of the strings in the array AValues match the string specified by AText using a case sensitive comparison. It returns the zero-based index of the first match in the array, or -1 if no match is found.

For a case insensitive comparison, use the IndexText routine.

See Also