hello i am using your code to sample a string every 2 characters. i have used the same structure as you have:
stringlist.Create;
instring:= edit1.Text;
while Length(instring) > 2 do begin
stringlist.Add((leftstr((instring),2));
Delete(instring, 1, 2 );
end;
stringlist.Add(...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.