Registriert seit: 26. Aug 2003
Ort: Steinfurt
292 Beiträge
Delphi XE2 Professional
|
Re: Leerstellen löschen
8. Sep 2003, 14:01
Oder ohne Schleifen:
Delphi-Quellcode:
function LeerzeichenLoeschen(Input: String): String;
begin
Result := Input;
if Length(Input) > 1 then
Result := Input[1] + Trim(Copy(Input, 2, Length(Input)));
end;
end;
Gruß
Wormid
Edit: Minimales Error-Checking nachgerüstet... *g*
Debuggers don't remove Bugs, they only show them in Slow-Motion.
|