Einzelnen Beitrag anzeigen

Klaus01

Registriert seit: 30. Nov 2005
Ort: München
5.768 Beiträge
 
Delphi 10.4 Sydney
 
#4

Re: Von einem String vorne und hinten alle Leerzeichen entfe

  Alt 10. Okt 2006, 10:37
Zitat von Delphi-Lover:
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.
Just a remark to your code.
Your Code will also delete characters that are located
in the String and not only the leading and trailing characters.

Regards
Klaus
Klaus
  Mit Zitat antworten Zitat