Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a method that converts string to unsigned int? _ultoa exists but couldn't find the vise verse version...

share|improve this question

4 Answers

up vote 12 down vote accepted

strtoul() is the one. And then again there are the old ones like atoi().

share|improve this answer
2  
atoi doesn't do unsigned though, right? In the Windows CRT, it will return an error (ERANGE) in the event of overflow. – Cheeso Mar 25 '10 at 2:43
Cheeso, yes, for what I can tell by the "i", it's int ;-) – Michael Krelin - hacker Mar 30 '10 at 14:30

Boost provides lexical_cast.

#include <boost/lexical_cast.hpp>
[...]
unsigned int x = boost::lexical_cast<unsigned int>(strVal);

Alternatively, you can use a stringstream (which is basically what lexical_cast does under the covers):

#include <sstream>
[...]
std::stringstream s(strVal);
unsigned int x;
s >> x;
share|improve this answer
1  
And if you want non-decimal interpretation, see also: stackoverflow.com/questions/1070497/… – Martin Sep 30 '09 at 7:23
Am I the only person who loves stream insertion, but hates stream extraction? I'd use functions (such as this boost one, though to be honest I'd probably still use atoi without thinking) every time. – Steve314 Sep 30 '09 at 7:25
Yeah, stream extraction is pretty ugly, especially since you can't initialise constants with it. It is also quite a bit more powerful though, as you can use manipulators to change your base, etc. – Martin Sep 30 '09 at 7:27

sscanf will do what you want.

char* myString = "123";  // Declare a string (c-style)
unsigned int myNumber;   // a number, where the answer will go.

sscanf(myString, "%u", &myNumber);  // Parse the String into the Number

printf("The number I got was %u\n", myNumber);  // Show the number, hopefully 123
share|improve this answer
I hated the scanf family even back in C. It never did what I wanted it to do, and most times it caused a bug. It's OK if you know that the string matches your requirements - if you've already checked it or extracted it with other code - but in that case, why not just use atoi or whatever? Anyone using a scanf-family function - well, there are some crimes where no punishment can ever be too harsh ;-) – Steve314 Sep 30 '09 at 7:30
That should be "Anyone using a scanf-family function in C++ - ..." – Steve314 Sep 30 '09 at 7:32

How about int atoi ( const char * str ) ?

string s("123");
unsigned u = (unsigned)atoi(s.c_str());
share|improve this answer
5  
This is not a good suggestion at all. He's specifically asked for "unsigned int" and mentions things like "_ultoa". The poster knows about atoi(), atol(), etc. These functions are all signed and recognize the - symbol, might handle overflow, etc. The right answer is to use functions like strtoul. – Armentage Apr 19 '11 at 4:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.