在使用Visual Studio 2017的Windows上,我可以使用以下代码大写u32string
(基于char32_t
):
#include <locale>
#include <iostream>
#include <string>
void toUpper(std::u32string& u32str, std::string localeStr)
{
std::locale locale(localeStr);
for (unsigned i = 0; i<u32str.size(); ++i)
u32str[i] = std::toupper(u32str[i], locale);
}
同样的事情不适用于macOS和XCode。 我遇到了这样的错误:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__locale:795:44: error: implicit instantiation of undefined template 'std::__1::ctype<char32_t>'
return use_facet<ctype<_CharT> >(__loc).toupper(__c);
有可行的方法吗?
答案 0 :(得分:0)
我找到了一个解决方案:
而不是使用std::u32string
我现在使用std::string
进行utf8
编码。
从std::u32string
到std::string
(utf8)的转换可以通过utf8-cpp
完成:http://utfcpp.sourceforge.net/
需要将utf8
字符串转换为std::wstring
(因为std::toupper
的所有平台上都未实现std::u32string
。
void toUpper(std::string& str, std::string localeStr)
{
//unicode to wide string converter
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> converter;
//convert to wstring (because std::toupper is not implemented on all platforms for u32string)
std::wstring wide = converter.from_bytes(str);
std::locale locale;
try
{
locale = std::locale(localeStr);
}
catch(const std::exception&)
{
std::cerr << "locale not supported by system: " << localeStr << " (" << getLocaleByLanguage(localeStr) << ")" << std::endl;
}
auto& f = std::use_facet<std::ctype<wchar_t>>(locale);
f.toupper(&wide[0], &wide[0] + wide.size());
//convert back
str = converter.to_bytes(wide);
}
注意:
localeStr
必须是这样的:en
,de
,fr
,... localeStr
必须为de_DE
,fr_FR
,en_US
,...