How do I convert a CString to a double in C++?
Unicode support would be nice also.
Thanks!
|
How do I convert a Unicode support would be nice also. Thanks! |
|||||||
|
|
A Knowing this, you can use
...or for Unicode builds,
...or to support both Unicode and non-Unicode builds...
( |
|||||||||||
|
|
You can convert anything to anything using a
|
|||
|
|
|
with the boost lexical_cast library, you do
|
||||
|
|
|
strtod (or wcstod) will convert strings to a double-precision value. (Requires |
|||||||
|
|