wctomb 在千分之一符号 (‰) 上窒息

发布于 2024-10-14 06:39:32 字数 264 浏览 6 评论 0原文

我正在尝试打印一堆单位标签;其中一些包含希腊字符,一些有其他有趣的代码点。

我追溯到 wctomb 函数,不知道如何处理例如 UTF-16 字符 8240:

char mb[10]; 
assert( 0 <= wctomb(mb,8240) );

如何将 wctomb 使用的区域设置设置为例如“所有 unicode 字符“?

如何从我需要的字符开始找到我需要的正确区域设置名称?

I am trying to print out a bunch of unit labels; some of them contain Greek characters, some have other funny code points.

I traced it back to the wctomb functions not knowing what to do with e.g. UTF-16 character 8240:

char mb[10]; 
assert( 0 <= wctomb(mb,8240) );

How can I set the locale used by wctomb to e.g. "All unicode characters"?

How can I find the proper locale name I need, starting from the characters I need?

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

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

发布评论

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

评论(1

彼岸花ソ最美的依靠 2024-10-21 06:39:32

设置正确的 UTF-8 区域设置即可修复该问题;

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>

int main()
{
    setlocale(LC_ALL, "en_US.UTF-8");
    char mb[10]; 
    assert( 0 <= wctomb(mb,8240) );
    printf("%s\n", mb);
    return 0;
}

请参阅 http://ideone.com/sflZj

Setting a correct UTF-8 locale will fix it;

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>

int main()
{
    setlocale(LC_ALL, "en_US.UTF-8");
    char mb[10]; 
    assert( 0 <= wctomb(mb,8240) );
    printf("%s\n", mb);
    return 0;
}

See http://ideone.com/sflZj

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文