<HTML>
<style> BODY { font-family:Arial, Helvetica, sans-serif;font-size:12px; }</style>Hi everyone,<br>
<br>
I've developed a couple of "in" operator overrides so you can use "<Char> in <array of Char>" (useful in parsing tools, say, to see if a character belongs to a set of delimiters) and "<Char> in <string>". e.g.<br>
<br>
operator in(_Char: Char; _Set: array of Char): Boolean;<br>
var<br>
  C: Char;<br>
begin<br>
  Result := False;<br>
  for C in _Set do<br>
    if C = _Char then<br>
    begin<br>
      Result := True;<br>
      Exit;<br>
    end;<br>
end; <br>
<br>
Would these be welcome in one of the core units? And if so, which unit would you recommend?<br>
<br>
Gareth aka. Kit<br>
 </HTML>