我正在开展一个需要从C++
获取数据的unicode text
项目。
我有一个问题,我不能降低一些unicode character
。
我使用wchar_t
来存储从unicode文件中读取的unicode字符。之后,我使用_wcslwr
降低wchar_t
字符串。还有很多情况还不低如:
Đ Â Ă Ê Ô Ơ Ư Ấ Ắ Ế Ố Ớ Ứ Ầ Ằ Ề Ồ Ờ Ừ Ậ Ặ Ệ Ộ Ợ Ự
哪个小写是:
đ â ă ê ô ơ ư ấ ắ ế ố ớ ứ ầ ằ ề ồ ờ ừ ậ ặ ệ ộ ợ ự
我已尝试tolower
,但仍无效。
答案 0 :(得分:4)
如果您只拨打tolower
,它会从标题std::tolower
中拨打clocale
,只会为tolower
调用ansi字符。
正确的签名应该是:
template< class charT >
charT tolower( charT ch, const locale& loc );
以下是2个版本,效果很好:
#include <iostream>
#include <cwctype>
#include <clocale>
#include <algorithm>
#include <locale>
int main() {
std::setlocale(LC_ALL, "");
std::wstring data = L"Đ Â Ă Ê Ô Ơ Ư Ấ Ắ Ế Ố Ớ Ứ Ầ Ằ Ề Ồ Ờ Ừ Ậ Ặ Ệ Ộ Ợ Ự";
std::wcout << data << std::endl;
// C std::towlower
for(auto c: data)
{
std::wcout << static_cast<wchar_t>(std::towlower(c));
}
std::wcout << std::endl;
// C++ std::tolower(charT, std::locale)
std::locale loc("");
for(auto c: data)
{
// This is recommended
std::wcout << std::tolower(c, loc);
}
std::wcout << std::endl;
return 0;
}
<强>参考:强>