作者spider391 (小乖)
看板C_and_CPP
標題[問題] wstring & string 的轉換問題 (boost)
時間Thu Feb 11 14:51:42 2010
板上各位大大好:
小弟在 15826 篇中有提到過 wstring 與 string 互換的方法
(ANSI to Unicode)
再寫一些 GUI 程式的時候 ( MFC or wxWidgets )
利用對話盒取得的字串通常是 Unicode 格式的
但我們常常需要將 Unicode 的字串轉成 ANSI 的格式
eq. /***** 需你馬 (XD) ******/
CString libstr = dlg.getstring(); // CString 為 library 提供的字串類別
std::wstring wstr = libstr.c_str(); // 轉成 STL 的 wstring 類別
std::string str = ws2s(wstr); // ws2s wstring to string
// process ansi code
/***********************/
這牽扯到地域性 locale,所以其實不是很好處理。
在 windows 下基本上是用 WideCharToMultiByte和MultiByteToWideChar函式來轉換
但考慮到跨平台我想用 boost library 作轉換,
網路上是聽說 boost的lexical_cast 可以,不過我測式的時候給我出現
runtime error = ="
請問有人用過 boost 作轉換成功的嗎? (中文字)
謝謝
以下是一種跨平台的轉法 (利用 C runtime library)
std::string ws2s(const std::wstring& ws)
{
using namespace std;
string curLocale = setlocale(LC_ALL, NULL); // curLocale = "C";
const wchar_t* _Source = ws.c_str();
size_t _Dsize = 2 * ws.size() + 1;
char *_Dest = new char[_Dsize];
memset(_Dest,0,_Dsize);
wcstombs(_Dest,_Source,_Dsize);
string result = _Dest;
delete []_Dest;
setlocale(LC_ALL, curLocale.c_str());
return result;
}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 220.134.96.34
→ tinlans:你直接用 ICU 這個 lib 吧,然後 boost 也開 ICU 編出來。 02/11 15:17
→ tinlans:不然,有的沒的問題會很多。 02/11 15:17