show/hide this revision's text 2 Delphicode.

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.

show/hide this revision's text 1

I don't know Delphi. I can give you just pseudo-code:

Result = false;
Strings = [string1, string2, ...];
for(int i=0; i<Strings.length OR Result; i++)
{
  Result = Result or MyString == Strings[i];
}

In fact, you do compare MyString with each string in Strings. As soon as you find one matching you can exit the for loop.