ilklhl1Lihl1
06-02-2012, 11:43 PM
I want to go into a string char by char and take this char and convert it with the function chr() i don't know what function is used in simba,
i tried this
for i:=0 to length(s) do
begin
char:=s[i];
byte:=chr(s[i]);
inc(i);
end;
s is a string
i is a integer , char a string , byte an integer
i tried this
for i:=0 to length(s) do
begin
char:=s[i];
byte:=chr(s[i]);
inc(i);
end;
s is a string
i is a integer , char a string , byte an integer