3

我一直在尝试编写一个 UTF-16 字符串结构,虽然标准库提供了一个unicode模块,但它似乎没有提供一种方法来打印出u16. 我试过这个:

const std = @import("std");
const unicode = std.unicode;
const stdout = std.io.getStdOut().outStream();

pub fn main() !void {
    const unicode_str = unicode.utf8ToUtf16LeStringLiteral(" hello! ");
    try stdout.print("{}\n", .{unicode_str});
}

这输出:

[12:0]u16@202e9c

有没有办法在[]u16不将其转换回非 unicode 字符串 () 的情况下打印 unicode 字符串 ( []u8)?

4

1 回答 1

6

[]const u8[]const u16存储编码的 unicode 代码点。Unicode 代码点在 0..1,114,112 范围内,因此每个代码点具有一个数组索引的实际 Unicode 字符串必须是[]const u21. utf-8 和 utf-16 都需要对不适合的代码点进行编码。除非有 utf-16 的兼容性原因(如某些 windows 函数),否则您可能应该使用[]const u8unicode 字符串。

要将 utf-16 打印到 utf-8 流,您必须解码 utf-16 并将其重新编码为 utf-8。当前没有自动执行此操作的格式说明符。

您可以一次转换整个字符串,需要分配:

const utf8string = try std.unicode.utf16leToUtf8Alloc(alloc, utf16le);

或者,没有分配:

var writer = std.io.getStdOut().writer();
var it = std.unicode.Utf16LeIterator.init(utf16le);
while (try it.nextCodepoint()) |codepoint| {
    var buf: [4]u8 = [_]u8{undefined} ** 4;
    const len = try std.unicode.utf8Encode(codepoint, &buf);
    try writer.writeAll(buf[0..len]);
}

请注意,如果您正在写入需要系统调用来写入的地方,那么如果不使用缓冲写入器,这将非常慢。

于 2020-12-01T00:48:33.613 回答