MatchStr

Check whether a string occurs in an array of strings, observing case.

Declaration

Source position: strutils.pp line 56

  function MatchStr(const AText: UnicodeString; 
                   const AValues: Array of UnicodeString) : Boolean;
  function MatchStr(const AText: string; const AValues: Array of string)
                    : Boolean;

Description

MatchStr matches AText against each Unicode string in AValues. If a match is found, it returns True, otherwise False is returned. The strings are matched observing case.

This function simply calls IndexStr and checks whether it returns -1 or not.