到上面的 char16_t 数组

发布于 2024-11-08 13:56:29 字数 375 浏览 0 评论 0原文

有没有什么办法可以做得很好呢。当我尝试使用Boost的to_upper()时,我得到一个std::bad_cast,所以我以这样的结果结束:

while(str[i]!=u'\0')
{
    str[i]=(char16_t)to_upper((wchar_t)str[i]);
    i++;
}

我什至不确定这是正确的因为我不知道是否能保证char16_tto_upper与原始字符的大小相同。我不确定这是否会导致覆盖下一个字符或再次读取最后一个进动的后半部分。抱歉我提出了愚蠢的问题,但是当涉及到随机访问和具有可变长度编码的字符类型时,我遇到了问题。

Is there any way to do it nicely. When I try to use Boost's to_upper(), I get a std::bad_cast, so I ended with something like this:

while(str[i]!=u'\0')
{
    str[i]=(char16_t)to_upper((wchar_t)str[i]);
    i++;
}

I'm not even sure that this is correct because I don't know if it is guaranteed that to_upper of char16_t has the same size as the original character. And I'm not sure if that would cause overwriting of the next character or reading again the second half of the last one precessed. Sorry for my stupid questions, but I have problems when it comes to random access and char types that have variable-length encodings.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

征棹 2024-11-15 13:56:29

最好的方法可能是这样的:

char16_t upper = std::use_facet<std::ctype<char16_t>>(std::locale()).toupper(ch);

The best way to do it is probably something like this:

char16_t upper = std::use_facet<std::ctype<char16_t>>(std::locale()).toupper(ch);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文