MatchText determines if any of the strings in the array AValues match the string specified by AText using a case insensitive comparison. It returns true if at least one of the strings in the array match, or false if none of the strings match.
function MatchText(const AText: string; const AValues: array of string): Boolean; overload;
Boolean MatchText(const AnsiString AText, const array of string AValues);
For a case sensitive comparison, use the MatchStr routine.
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|