Delphi-Quellcode:
const
ParamSeps = ['=', ':', '?'];
Delphi-Quellcode:
P := Pos('=', AIn);
if P = 0 then
begin
P := Pos(':', AIn);
if P = 0 then
P := Pos('?', AIn)
;
end;
Is possible to check if char is in text using above set instead if-block and Pos()?