Einzelnen Beitrag anzeigen

Benutzerbild von Stefan Hueg
Stefan Hueg

Registriert seit: 13. Jun 2004
Ort: Gießen
187 Beiträge
 
Delphi 2006 Professional
 
#5

Re: Problem mit String in Schleife

  Alt 21. Jun 2006, 22:36
Der Code

Delphi-Quellcode:
while i < L do
begin
  IsDatum := True;
  Index := PosEx('1', htmlbuffer, i);

  if (Index > 0) and (Index <= L - 3) then
  begin
    if (htmlbuffer[Index + 1] in ['0'..'9']) and (htmlbuffer[Index + 2] in ['0'..'9']) and (htmlbuffer[Index + 3] in ['0'..'9']) then
      Datum := Copy(htmlbuffer, Index, 4);
    else
      IsDatum := False;

    if IsDatum then
      Liste := Liste + Datum;

    i := Index + 1;
  end else
    Break;
end;
memo1.text := Liste;
Ist noch ein wenig schneller
Stefan Hueg
  Mit Zitat antworten Zitat