IndexText

Index of text in a list of values

Declaration

Source position: strutils.pp line 42

  function IndexText(const AText: string; const AValues: Array of string)
                     : Integer;
  function IndexText(const AText: UnicodeString; 
                    const AValues: Array of UnicodeString) : Integer;

Description

MatchText returns the index of the string in the array aValues that matches aText. The comparison is done case insensitively. If you wish to compare case sensitively, use IndexStr instead.

See also

Name Description
AnsiIndexText Searches, case insensitive, for a string in an array of strings.
IndexStr Searches, observing case, for a string in an array of strings.
MatchText Check if a string is in a list of values