在 Erlang 中处理 .Net UTF-8 字符串

发布于 2024-07-18 03:01:30 字数 137 浏览 7 评论 0原文

我正在玩一点 erlang 和分布式数据库 Mnesia。

我面临的第一个问题是 erlang 的“int list”字符串和 .Net UTF-8 字符串之间的不兼容。

有没有什么好的转换库?

谢谢

I'm playing a bit with erlang and the distributed db Mnesia.

One of the first problem I'm facing is the incompatibilty beetween the 'int list' strings of erlang and .Net UTF-8 strings.

Is there any good conversion library?

Thanks

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

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

发布评论

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

评论(2

攒一口袋星星 2024-07-25 03:01:30

新的 Erlang R13B 版本对 unicode 提供了更好的支持。

新的 Unicode 模块记录在此处,并且 EEP 10 中描述了实现的 Unicode 支持(Erlang 增强提案 10)。

The new R13B release of Erlang has better support for unicode.

The new Unicode module is documented here and the Unicode support implemented is described in the EEP 10 (Erlang Enhancement Proposal 10).

执手闯天涯 2024-07-25 03:01:30

据我所见,erlang使用UTF32,因此使用 System.Text.Encoding.UTF32 可能可以获取列表的整数,然后您需要根据这些整数创建列表。 虽然没有测试过。

下面的代码片段可能会有所帮助(它创建了一个 unicode int 数组,它应该与 erlang 列表中预期的数组相匹配):

public static int[] GetIntsForString(string source) {
    byte[] data = System.Text.Encoding.UTF32.GetBytes(source);
    int[] result = new int[source.Length];
    for (int i = 0; i < source.Length; i++) {
        result[i] = BitConverter.ToInt32(data, i*4);
    }
    return result;
}

As far as I have seen, erlang uses UTF32, so using System.Text.Encoding.UTF32 might do the trick to get the ints for the list, then you need to create the list from those. Not tested though.

The following snippet may help (it creates an array of unicode ints which should match the ones expected for the erlang list):

public static int[] GetIntsForString(string source) {
    byte[] data = System.Text.Encoding.UTF32.GetBytes(source);
    int[] result = new int[source.Length];
    for (int i = 0; i < source.Length; i++) {
        result[i] = BitConverter.ToInt32(data, i*4);
    }
    return result;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文