vote up 2 vote down star
1

how can I convert string to double in C++ I want a function that returns 0 when the string is not numerical

flag
You should give this a more descriptive title or no one will help. – dancavallaro Dec 25 '08 at 17:18
What about a string that contains a double with extra junk on the end? – Martin York Dec 27 '08 at 7:08

10 Answers

vote up 12 vote down

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.

 // the requested function
 #include <sstream>
 double string_to_double( const std::string& s )
 {
   std::istringstream i(s);
   double x;
   if (!(i >> x))
     return 0;
   return x;
 } 

 // some tests
 #include <cassert>
 int main( int, char** )
 {
    // simple case:
    assert( 0.5 == string_to_double( "0.5"    ) );

    // blank space:
    assert( 0.5 == string_to_double( "0.5 "   ) );
    assert( 0.5 == string_to_double( " 0.5"   ) );

    // trailing non digit characters:
    assert( 0.5 == string_to_double( "0.5a"   ) );

    // note that with your requirements you can't distinguish
    // all the the allowed string representation of zero from
    // the non numerical strings:
    assert( 0 == string_to_double( "0"      ) );
    assert( 0 == string_to_double( "0."     ) );
    assert( 0 == string_to_double( "0.0"    ) );
    assert( 0 == string_to_double( "0.00"   ) );
    assert( 0 == string_to_double( "0.0e0"  ) );
    assert( 0 == string_to_double( "0.0e-0" ) );
    assert( 0 == string_to_double( "0.0e+0" ) );
    assert( 0 == string_to_double( "foobar" ) );
    return 0;
 }
link|flag
vote up 9 vote down

Most simple way is to use boost::lexical_cast:

double value;
try
{
    value = boost::lexical_cast<double>(my_string);
}
catch (const std::exception&)
{
    value = 0;
}
link|flag
Exception handling should not be used for flow control. Exceptions are for exceptional conditions. – Adam Rosenfield Dec 25 '08 at 17:48
@adam, in this case boost::lexical_cast() throws when non-numeric data exists in my_string. As long as my_string most usually contains a number, then I'd say this fits the bill as an exceptional condition. – ceretullis Dec 26 '08 at 3:20
You should really be catching a more specific exception. boost::bad_lexical_cast in this case. – yuriks Dec 27 '08 at 4:31
Upvoted but I agree with yuriks (catch the specific exception). – Nick Presta Dec 27 '08 at 4:45
Unfortunately this will look like it works for "10.5xxxx". Should this string also fail? or should it return 10.5? – Martin York Dec 27 '08 at 7:03
vote up 9 vote down

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:

#include <stdlib.h>
double strict_str2double(char* str)
{
    char* endptr;
    double value = strtod(str, &endptr);
    if (*endptr) return 0;
    return value;
}
link|flag
note the empty string will be accepted by that code :) (endptr == str || *endptr) should fix it – Johannes Schaub - litb Dec 25 '08 at 23:01
If the string is empty, value will be 0. – jmucchiello Dec 26 '08 at 0:15
hm right. well spot. nvm :) – Johannes Schaub - litb Dec 26 '08 at 20:14
vote up 9 vote down

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 return 0; i do throw. Just replace the throwing lines by the zero returning line if you really want the functions to return zero in case of failure:

Safe C++ Way

You can define a function for this using std::istringstream:

#include <sstream>  

double to_double(std::string const& str) {
    std::istringstream ss(str);

    double d;
    ss >> d;

    /* eat up trailing whitespace if there was a double read, and ensure
     * there is no character left. the eof bit is set in the case that
     * `std::ws` tried to read beyond the stream. */
    if(!(ss && (ss >> std::ws).eof()))
        throw conversion_error();  

    return d;
}

To assist you in figuring out what it does (some points are simplified):

  • Creation of a input-stringstream initialized with the string given
  • Reading a double value out of it using operator>>. This means skipping whitespace and trying to read a double.
  • If no double could be read, as in abc the stream sets the fail-bit. Note that cases like 3abc will succeed and will not set the fail-bit.
  • If the fail-bit is set, ss evaluates to a zero value, which means false.
  • If an double was read, we skip trailing whitespace. If we then are at the end of the stream (note that eof() will return true if we tried to read past the end. std::ws does exactly that), eof will return true. Note this check makes sure that 3abc will not pass our check.
  • If in both cases, right and left of the && evaluate to true, we don't throw.

Similar, you check for int and other types. If you know how to work with templates, you know how to generalize this for other types as well. Incidentally, this is exactly what boost::lexical_cast provides to you. Check it out: http://www.boost.org/doc/libs/1_37_0/libs/conversion/lexical_cast.htm.

C Way One

This way has advantages (being fast) but also major disadvantages (can't generalized using a template, need to work with raw pointers):

#include <cstdlib>
#include <cctype>  

double to_double(std::string const& s) {
    char * endptr;
    char const * strc = s.c_str();

    double d = std::strtod(strc, &endptr);
    if(endptr != strc) // skip trailing whitespace
        while(*endptr && std::isspace(*endptr)) 
           endptr++;
    if(*strc || *endptr)
        throw conversion_error();
    return d;
}

strtod will set endptr to the last character processed. Which is in our case the terminating null character. If no conversion was performed, endptr is set to the value of the string given to strtod.

C Way Two

One might thing that std::sscanf does the trick. But i think it's easy to oversee something.

#include <cstdio>

double to_double(std::string const& s) {
    int n;
    double d;
    if(std::sscanf(s.c_str(), "%lf %n", &d, &n) != 1 || s.c_str()[n])
        throw conversion_error();
    return d;
}

std::sscanf will return the items converted (without

link|flag
vote up 2 vote down

See answers to similar question How to parse a string to an int in C++?

link|flag
vote up 1 vote down

If it is a c-string (null-terminated array of type char), you can do something like:

#include <stdlib.h>
char str[] = "3.14159";
double num = atof(str);

If it is a C++ string, just use the c_str() method:

double num = atof( cppstr.c_str() );

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

link|flag
vote up 1 vote down

One of the most elegant solution to this problem is to use boost::lexical_cast as @Evgeny Lazin mentioned.

link|flag
vote up 1 vote down

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.

#include <boost/lexical_cast.hpp>
#include <string>

int main()
{
    std::string str = "3.14";
    double strVal;
    try {
        strVal = boost::lexical_cast<double>(str);
    } catch(bad_lexical_cast&) {
        //Do your errormagic
    }
    return 0;
}
link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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