我正在开发一个支持 unicode 的基于终端的程序。在某些情况下,我需要在打印之前确定一个字符串将消耗多少个终端列。不幸的是,有些字符是 2 列宽(中文等),但我发现这个答案表明检测全角字符的好方法是从 ICU 库中调用 u_getIntPropertyValue() 。
现在我正在尝试解析我的 UTF8 字符串的字符并将它们传递给这个函数。我现在遇到的问题是 u_getIntPropertyValue() 需要一个 UTF-32 代码点。
从 utf8 字符串中获取此信息的最佳方法是什么?我目前正在尝试使用 boost::locale (在我的程序中的其他地方使用)来做到这一点,但我无法获得干净的转换。我的来自 boost::locale 的 UTF32 字符串前面带有一个零宽度字符以指示字节顺序。显然我可以跳过字符串的前四个字节,但是有没有更简洁的方法呢?
这是我目前丑陋的解决方案:
inline size_t utf8PrintableSize(const std::string &str, std::locale loc)
{
namespace ba = boost::locale::boundary;
ba::ssegment_index map(ba::character, str.begin(), str.end(), loc);
size_t widthCount = 0;
for (ba::ssegment_index::iterator it = map.begin(); it != map.end(); ++it)
{
++widthCount;
std::string utf32Char = boost::locale::conv::from_utf(it->str(), std::string("utf-32"));
UChar32 utf32Codepoint = 0;
memcpy(&utf32Codepoint, utf32Char.c_str()+4, sizeof(UChar32));
int width = u_getIntPropertyValue(utf32Codepoint, UCHAR_EAST_ASIAN_WIDTH);
if ((width == U_EA_FULLWIDTH) || (width == U_EA_WIDE))
{
++widthCount;
}
}
return widthCount;
}