how can I convert string to double in C++ I want a function that returns 0 when the string is not numerical
|
1
|
|||||
|
|
|
See C++ FAQ Lite How do I convert a std::string to a number? Please note that with your requirements you can't distinguish all the the allowed string representations of zero from the non numerical strings.
|
|||
|
|
|
|
Most simple way is to use boost::lexical_cast:
|
||||||||||
|
|
|
atof and strtod do what you want but are very forgiving. If you don't want to accept strings like "32asd" as valid you need to wrap strtod in a function such as this:
|
||||||
|
|
|
This is a little duplication from another answer of mine. But in the other answer, i only checked whether it's a double and returned true/false, but i didn't actually return a double. That's done in this one. In all versions, we accept strings which only contain a double, and optional leading / trailing whitespace (the other answer is here). Note that instead of Safe C++ WayYou can define a function for this using
To assist you in figuring out what it does (some points are simplified):
Similar, you check for C Way OneThis way has advantages (being fast) but also major disadvantages (can't generalized using a template, need to work with raw pointers):
C Way TwoOne might thing that
|
|||
|
|
|
|
See answers to similar question How to parse a string to an int in C++? |
||
|
|
|
|
If it is a c-string (null-terminated array of type char), you can do something like:
If it is a C++ string, just use the c_str() method:
atof() will convert the string to a double, returning 0 on failure. The function is documented here: http://www.cplusplus.com/reference/clibrary/cstdlib/atof.html |
||
|
|
|
|
One of the most elegant solution to this problem is to use boost::lexical_cast as @Evgeny Lazin mentioned. |
||
|
|
|
|
Must say I agree with that the most elegant solution to this is using boost::lexical_cast. You can then catch the bad_lexical_cast that might occure, and do something when it fails, instead of getting 0.0 which atof gives.
|
||
|
|
|
|
There is not a single function that will do that, because 0 is a valid number and you need to be able to catch when the string is not a valid number. You will need to check the string first (probably with a regular expression) to see if it contains only numbers and numerical punctuation. You can then decide to return 0 if that is what your application needs or convert it to a double. After looking up atof() and strtod() I should rephrase my statement to "there shouldn't be" instead of "there is not" ... hehe Ron |
||
|
|
|
|
I think atof is exactly what you want. This function parses a string and converts it into a double. If the string does not start with a number (non-numerical) a 0.0 is returned. However, it does try to parse as much of the string as it can. In other words, the string "3abc" would be interpreted as 3.0. If you want a function that will return 0.0 in these cases, you will need to write a small wrapper yourself. Also, this function works with the C-style string of a null terminated array of characters. If you're using a string object, it will need to be converted to a char* before you use this function. |
|||
|
|
