CString 轉換成string vs2010
阿新 • • 發佈:2018-12-24
CString 轉換成string
我試了很多的方法,都不行,我用的vs2010,大家給提供個正確的方法。沒驗證過的可就別參和了。
------解決方案--------------------
unicode:
CString sz1 = L"abc";
std::string sz2 = CT2A(sz1.GetBuffer()); //轉化為非unicode.
非unicode:
CString sz1 = "abc";
std::string sz2 = sz1.GetBuffer();
------解決方案--------------------
樓上正解,再提供幾個UNICODE下的方法
我試了很多的方法,都不行,我用的vs2010,大家給提供個正確的方法。沒驗證過的可就別參和了。
------解決方案--------------------
unicode:
CString sz1 = L"abc";
std::string sz2 = CT2A(sz1.GetBuffer()); //轉化為非unicode.
非unicode:
CString sz1 = "abc";
std::string sz2 = sz1.GetBuffer();
------解決方案--------------------
樓上正解,再提供幾個UNICODE下的方法
//方法一 CString theCStr; std::string STDStr( CW2A( theCStr.GetString() ) ); //方法二 CString m_Name; CT2CA pszName(m_Name); std::string m_NameStd(pszName); //方法三 CString str = L"Test"; std::wstring ws(str); std::string s; s.assign(ws.begin(), ws.end());
http://www.myexception.cn/vc-mfc/153485.html