xxxxxxxxxx
function MatchText(const AText: string; const AValues: array of string): Boolean;
function MatchStr(const AText: string; const AValues: array of string): Boolean;
// Example:
MatchText('MeroFuruya', ['My', 'name', 'is', 'MeroFuruya']); // true
MatchText('Mero', ['My', 'name', 'is', 'MeroFuruya']); // false
MatchStr('MeroFuruya', ['My', 'name', 'is', 'MeroFuruya']); // true
MatchStr('Mero', ['My', 'name', 'is', 'MeroFuruya']); // true