I have a std::string which could be a string or could be a value (such as 0) Whats the best or easiest way to convert the string to int with the ability to fail? i want a c++ version of C#'s Int32.TryParse
|
|
Use boost::lexical_cast. If the cast cannot be done, it will throw an exception.
Without boost:
Faking boost:
If you want no-throw versions of these functions, you'll have to catch the appropriate exceptions (I don't think
|
||||||||||||
|
|
|
Another way using standard streams :
|
||||||
|
|
|
The other answers that use streams will succeed even if the string contains invalid characters after a valid number e.g. "123abc". I'm not familiar with boost, so can't comment on its behavior. If you want to know if the string contains a number and only a number, you have to use strtol:
strtol returns a pointer to the character that ended the parse, so you can easily check if the entire string was parsed. Note that strtol returns a long not an int, but depending on your compiler these are probably the same. There is no strtoi function in the standard library, only atoi, which doesn't return the parse ending character. |
||||||
|
|
|
Before boost's
|
||
|
|
