Registriert seit: 19. Okt 2004
Ort: Amsterdam
30 Beiträge
Delphi 2005 Professional
|
Re: Von einem String vorne und hinten alle Leerzeichen entfe
10. Okt 2006, 10:31
Hello,
Try this:
Delphi-Quellcode:
Function DeleteChar(strValue : String; aChar : Char) : String;
Var CharPos : Integer;
Begin
Repeat
CharPos:=Pos(aChar,strValue);
If CharPos<>0 Then Delete(strValue,CharPos,1);
Until CharPos=0;
Result:=strValue;
End;
Greets,
Delphi-Lover.
Rob
|
|
Zitat
|