Click here to Skip to main content
Click here to Skip to main content

C++: Converting an MFC CString to a std::string

By , 2 Apr 2011
 
As you use CString, you have access to the CW2A ATL macro, assuming that you work with _UNICODE defined, here it is:
CString theCStr;
...
std::string STDStr( CW2A( theCStr.GetString() ) );
which will convert to "system encoding on the user's machine" (thanks Nemanja[^] comment !), if you want to specify the code page, UTF-8 encoded for example as the original, here it is:
CString theCStr;
...
std::string STDStr( CW2A( theCStr.GetString(), CP_UTF8 ) );
:)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

jean Davy
Engineer
France France
Member
I'm an independent Software Developer living in the Alpes Maritimes (aka French Riviera).
 
Even if in the past I have worked regularily with Fortran, Pascal, Basic (not necessarily Visual), and much more esoteric languages (who knows Prolog, Lotus 123 macros ?), even if I still work from time to time with C#, Java or some "interpreted languages", I'm more specialized in C++.
I work on MFC since the very first version, I enjoy working on Visual Studio 2010, its C++0x features, STL, MFC, boost, WTL ...

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
General5!memberPranit Kothari13 Dec '11 - 1:27 
GeneralReason for my vote of 5 Nice,good and not complicatedmemberPranit Kothari13 Dec '11 - 1:26 
GeneralReason for my vote of 5 simple way to accomplish the task...memberAlbert Holguin2 Apr '11 - 18:48 
GeneralReason for my vote of 5 Nice. However, be aware that your ap...memberNemanja Trifunovic30 Mar '11 - 8:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130513.1 | Last Updated 2 Apr 2011
Article Copyright 2011 by jean Davy
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid