Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I convert a CString to a double in C++?

Unicode support would be nice also.

Thanks!

share|improve this question
I really cant believe this hasn't been asked yet...but search revealed nothing. If it's a duplicate, please be gentle :) – Steve Duitsman May 27 '09 at 16:43
3  
Couldn't find the answer here either, but googling "cstring to double" gets you the correct answer on the first hit. – Andrew Bainbridge May 27 '09 at 16:52

4 Answers

up vote 11 down vote accepted

A CString can convert to an LPCTSTR, which is basically a const char* (const wchar_t* in Unicode builds).

Knowing this, you can use atof():

CString thestring("13.37");
double d = atof(thestring).

...or for Unicode builds, _wtof():

CString thestring(L"13.37");
double d = _wtof(thestring).

...or to support both Unicode and non-Unicode builds...

CString thestring(_T("13.37"));
double d = _tstof(thestring).

(_tstof() is a macro that expands to either atof() or _wtof() based on whether or not _UNICODE is defined)

share|improve this answer
2  
This link shows you "wcstod" which is what I used to support unicode. msdn.microsoft.com/en-us/library/kxsfc1ab(VS.80).aspx – Steve Duitsman May 27 '09 at 16:57
1  
This works, but IMO MighMoS's suggestion of std::stringstream is a bit cleaner. – Pete Jul 23 '09 at 17:13
_wcstod_l / _tcstod_l allows one to specify locale, so one can handle localized format (decimal delimiter as comma or dot etc.) – Rolf Kristensen Jul 24 '12 at 6:41

You can convert anything to anything using a std::stringstream. The only requirement is that the operators >> and << be implemented. Stringstreams can be found in the <sstream> header file.

std::stringstream converter;
converter << myString;
converter >> myDouble;
share|improve this answer

with the boost lexical_cast library, you do

#include <boost/lexical_cast.hpp>
using namespace boost;

...

double d = lexical_cast<double>(thestring);
share|improve this answer

strtod (or wcstod) will convert strings to a double-precision value.

(Requires <stdlib.h> or <wchar.h>)

share|improve this answer
Consider some more context to the page you're adding – Dave Hillier Jul 23 '09 at 17:12
Updated my post! – xian Jul 23 '09 at 18:26
Usage examples wouldn't go amiss either... See the accepted answer. – Shog9 Jul 23 '09 at 19:11

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.