C++ 字符串代码点和代码单元有什么好的解决方案吗?
在 Java 中,字符串具有方法:
In Java, a String has methods:
length()/charAt(), codePointCount()/codePointAt()
C++11 has std::string a = u8"很烫烫的一锅汤";
但是a.size()
是char数组的长度,不能索引unicode char.
but a.size()
is the length of char array, cannot index the unicode char.
有没有针对C++字符串中的unicode的解决方案?
Is there any solutions for unicode in C++ string ?
推荐答案
我一般将 UTF-8
字符串转换为宽 UTF-32/UCS-2
字符串在进行字符操作之前.C++
实际上确实给了我们一些函数来做到这一点,但它们不是很用户友好,所以我在这里写了一些更好的转换函数:
I generally convert the UTF-8
string to a wide UTF-32/UCS-2
string before doing character operations. C++
does actually give us functions to do that but they are not very user friendly so I have written some nicer conversion functions here:
// This should convert to whatever the system wide character encoding
// is for the platform (UTF-32/Linux - UCS-2/Windows)
std::string ws_to_utf8(std::wstring const& s)
{
std::wstring_convert<std::codecvt_utf8<wchar_t>, wchar_t> cnv;
std::string utf8 = cnv.to_bytes(s);
if(cnv.converted() < s.size())
throw std::runtime_error("incomplete conversion");
return utf8;
}
std::wstring utf8_to_ws(std::string const& utf8)
{
std::wstring_convert<std::codecvt_utf8<wchar_t>, wchar_t> cnv;
std::wstring s = cnv.from_bytes(utf8);
if(cnv.converted() < utf8.size())
throw std::runtime_error("incomplete conversion");
return s;
}
int main()
{
std::string s = u8"很烫烫的一锅汤";
auto w = utf8_to_ws(s); // convert to wide (UTF-32/UCS-2)
// now we can use code-point indexes on the wide string
std::cout << s << " is " << w.size() << " characters long" << '
';
}
输出:
很烫烫的一锅汤 is 7 characters long
如果您想在 UTF-32
之间进行转换而不管平台如何,那么您可以使用以下(未经充分测试的)转换例程:
If you want to convert to and from UTF-32
regardless of platform then you can use the following (not so well tested) conversion routines:
std::string utf32_to_utf8(std::u32string const& utf32)
{
std::wstring_convert<std::codecvt_utf8<char32_t>, char32_t> cnv;
std::string utf8 = cnv.to_bytes(utf32);
if(cnv.converted() < utf32.size())
throw std::runtime_error("incomplete conversion");
return utf8;
}
std::u32string utf8_to_utf32(std::string const& utf8)
{
std::wstring_convert<std::codecvt_utf8<char32_t>, char32_t> cnv;
std::u32string utf32 = cnv.from_bytes(utf8);
if(cnv.converted() < utf8.size())
throw std::runtime_error("incomplete conversion");
return utf32;
}
注意:C++17
std::wstring_convert
已弃用强>.
然而我仍然更喜欢使用它而不是第三方库,因为它可移植,它避免了外部依赖,在提供替代品之前不会被删除并且在所有情况下都可以轻松替换这些函数的实现,而无需更改使用它们的所有代码.
However I still prefer to use it over a third party library because it is portable, it avoids external dependencies, it won't be removed until a replacement is provided and in all cases it will be easy to replace the implementations of these functions without having to change all the code that uses them.
相关文章