Is there a method that converts string to unsigned int? _ultoa exists but couldn't find the vise verse version...
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||
|
|
Boost provides lexical_cast.
Alternatively, you can use a stringstream (which is basically what lexical_cast does under the covers):
|
|||||||||
|
|
sscanf will do what you want.
|
|||||
|
|
How about int atoi ( const char * str ) ?
|
|||||
|