NOT und OR funktionieren schon, nur nicht mit Strings.
Sie sind binäre/logische Operatoren und keine für Strings!
also entweder ähnlich wie es chest3rs schon zeigte (nur mit AND
)
Delphi-Quellcode:
if (domain <> 'xxx.de')
and (domain <> 'xx.com')
and (dowmain <> 'xx-xx.de')
etc...
then
oder
Delphi-Quellcode:
if (domain = 'xxx.de')
or (domain = 'xx.com')
or (dowmain = 'xx-xx.de')
etc...
then
oder schau mal nach
MatchText/
AnsiMatchText oder
MatchStr/
AnsiMatchStr
if not MatchText(domain, ['xxx.com', ..., 'x.de']) then