show/hide this revision's text 2 find -> found

The code by Burkhard works, but iterates needlessly over the list even if a match is findfound.

Better approach:

function StringInArray(const Value: string; Strings: array of string): Boolean;
var I: Integer;
begin
  Result := True;
  for I := Low(Strings) to High(Strings) do
    if Strings[i] = Value then Exit;
  Result := False;
end;
show/hide this revision's text 1

The code by Burkhard works, but iterates needlessly over the list even if a match is find.

Better approach:

function StringInArray(const Value: string; Strings: array of string): Boolean;
var I: Integer;
begin
  Result := True;
  for I := Low(Strings) to High(Strings) do
    if Strings[i] = Value then Exit;
  Result := False;
end;