I don't know Delphi. I can give you just pseudo-code
Here is a function that does the job:
Result = false
function StringInArray(Value: string; Strings= [string1, string2, ...];
for(int i=0: array of string): Boolean;
i<Strings.length OR var I: Integer;
begin
Result := False;
i++for I := Low(Strings) {
to High(Strings) do
Result := Result or MyString =(Value = Strings[i]Strings[I]);
}
end;
In fact, you do compare MyString with each string in Strings. As soon as you find one matching you can exit the for loop.
