I have a std::string: 01001, I want to get each number:
std::string foo = "01001";
for (int i=0; i < foo.size(); ++i)
{
int res = atoi( foo[i] ); // fail
int res = atoi( &foo[i] ); // ok, but res = 0 in any case
}
How to do that?
|
|
|
This is the easiest way I see:
|
|||
|
|
|
If you know all characters of Your first attempt fails because |
|||||
|
|
Each digit can be obtained by simply using subtraction:
|
|||
|
|
|
One simple way, very close to what you have, would be to insert the char into a predefined string, as such:
|
||||
|
|