Moin Braingrenade,
ich hatte schon Schlimmeres befürchtet
Wieso klappt
Delphi-Quellcode:
for i := 0 to lenth(inputstring) do
begin
intarray[i] := StrToInt(inputstring[i]);
end;
bei Dir nicht?
Stimmt der inhalt nicht?
Übrigens: So dürfte es auch nicht gehen, da die Indizes eines Strings bei 1 beginnen.
Es sollte also wohl besser so aussehen:
Delphi-Quellcode:
for i := 0 to lenth(inputstring)-1 do
begin
intarray[i] := StrToInt(inputstring[i+1]);
end;