Hey Guys
How do you get the next character?
say that I have a, then I want b as the next.
I can convert a to integer:
a := 'a'; // number = 65
i := a[1] + 1; // number = 66
but how do I then convert i so that it becomes 'b'
Thanks
How do you get the next character?
say that I have a, then I want b as the next.
I can convert a to integer:
a := 'a'; // number = 65
i := a[1] + 1; // number = 66
but how do I then convert i so that it becomes 'b'
Thanks