Thema: Delphi TIniFile und Kommentare

Einzelnen Beitrag anzeigen

Bernd Nowak

Registriert seit: 18. Jan 2006
Ort: Duisburg
61 Beiträge
 
Turbo Delphi für Win32
 
#6

Re: TIniFile und Kommentare

  Alt 17. Apr 2007, 20:05
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) ?
  Mit Zitat antworten Zitat