Registriert seit: 19. Jan 2005
Ort: Elstra
764 Beiträge
Delphi 7 Enterprise
|
Re: Teilweise Strings übertragen
7. Apr 2005, 20:15
Nur so am Rande:
Notfalls hätte man es auch mit copy realisieren können:
Delphi-Quellcode:
function Links(aStr: string; count: Cardinal): string;
begin
Result:= copy(aStr, 1, count);
end;
function Rechts(aStr: string; count: Cardinal): string;
var ls: Integer;
begin
ls:= length(aStr);
Result:= copy(aStr, ls - count +1, ls);
end;
MfG
Binärbaum
There are exactly 10 kinds of people: those who understand binary, and those who don't.
---
"Software reift beim Kunden. Bei Hardware ist es anders: Hardware fault beim Kunden." - Rainer G. Spallek
|