This is for C++.
I have a String variable containing alphanumerical characters.
How can I get the ASCII value of each character?
For example, if my String variable is "a1b2", how can I get the ASCII values of each character (97,49,98,50)?
And, if I have an Int32 variable containing a numerical value, how can I create a String out of that ASCII value.
For example, if my Int32 variable has a value of 102, how can I create a String that contains "f" ?
I have been going through the documentation but these simple conversions, that are so basic in other languages, are not simple to understand in the C++ documentation.