AnsiIndexText
Searches, case insensitive, for a string in an array of strings.
Declaration
Source position: strutils.pp line 35
function AnsiIndexText(const AText: string;
const AValues: Array of string) : Integer;
Description
AnsiIndexText matches AText against each string in AValues. If a match is found, the corresponding index (zero-based) in the AValues array is returned. If no match is found, -1 is returned. The strings are matched ignoring case.
Errors
None
See also
Name | Description |
---|---|
AnsiIndexStr | Searches, observing case, for a string in an array of strings. |
AnsiMatchStr | Check whether a string occurs in an array of strings, observing case. |
AnsiMatchText | Check whether a string occurs in an array of strings, disregarding case. |
IndexStr | Searches, observing case, for a string in an array of strings. |
MatchStr | Check whether a string occurs in an array of strings, observing case. |