Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.506 Beiträge
Delphi 12 Athens
|
Re: Buchstaben weiterzählen
15. Sep 2004, 16:12
zählt von "a" bis "z":
Delphi-Quellcode:
for i := 1 to Lenght(text) do
if text[i] < 'z' then text[i] := Chr(Ord(text[i])+1) else text[i] := 'a';
Ein Therapeut entspricht 1024 Gigapeut.
|