Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.226 Beiträge
Delphi 12 Athens
|
AW: Leerzeichen in einem String rauslöschen
20. Nov 2014, 20:32
Zitat:
Delphi-Quellcode:
function ReplaceStr(const AText, AFromText, AToText: string): string;
begin
Result := AnsiReplaceStr(AText, AFromText, AToText);
end;
function AnsiReplaceStr(const AText, AFromText, AToText: string): string;
begin
Result := StringReplace(AText, AFromText, AToText, [rfReplaceAll]);
end;
Wem glaubt man da wohl mehr?
$2B or not $2B
Geändert von himitsu (20. Nov 2014 um 20:35 Uhr)
|
|
Zitat
|