Habe es gefunden
Ich habe es so gemacht:
Delphi-Quellcode:
j := ini.ReadString('Communications','alternate_ip_addr_lookup','-5');
// We look for ; and use this position to strip off the rest comment
posfound := AnsiPos(';', j);
if posfound > 0 then SetLength(j, posfound-1);
// We use trim to cut off blanks
trimmed := Trim(j);
// We use StrToIntDef to have the Integer regardless if the string is
// a number or something else
i := StrToIntDef(trimmed, -1);
Kann man das besser machen (Habe englische Kommentare falls ich die Quellen des Programmes veröffentliche) ?