Unit 'StrUtils' Package
[Overview][Resource strings][Constants][Types][Procedures and functions][Index] [#rtl]

IndexText

Index of text in a list of values.

Declaration

Source position: strutils.pp line 43

function IndexText(

  const AText: Ansistring;

  const AValues: array of Ansistring

):Integer;

function IndexText(

  const AText: UnicodeString;

  const AValues: array of UnicodeString

):Integer;

Description

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

See also

IndexStr

  

Searches, observing case, for a string in an array of strings.

MatchText

  

Check if a string is in a list of values.

AnsiIndexText

  

Searches, case insensitive, for a string in an array of strings.


Documentation generated on: Jul 22 2023