I figured out a somewhat convoluted way to convert a CStringW to a std::string, but I was wondering if there’s a cleaner way than:
CStringW cwstr;
std::wstring stdwstr = cwstr;
std::string stdstr = CW2T(stdwstr.c_str());
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can cut out the intermediate
std::wstring:Also note that you want the
CW2Amacro for correctness.CW2Tconverts to aTCHARstring, so the code you posted would only compile for an ANSI build (whereTCHARischar).