gpt4 book ai didi

unicode - D语言: How to print Unicode characters to the console?

转载 作者:行者123 更新时间:2023-12-02 03:56:17 25 4
gpt4 key购买 nike

我有以下简单的程序来从 3 个 unicode 字符集的并集生成随机 Unicode 字符串。

#!/usr/bin/env rdmd
import std.uni;
import std.random : randomSample;
import std.stdio;
import std.conv;

/**
* Random salt generator
*/
dstring get_salt(uint s)
{
auto unicodechars = unicode("Cyrillic") | unicode("Armenian") | unicode("Telugu");
dstring unichars = to!dstring(unicodechars);

return to!dstring(randomSample(unichars, s));
}

void main()
{
writeln("Random salt:");
writeln(get_salt(32));
}

但是,writeln 的输出是:

$ ./teste.d
Random salt:
rw13 13437 78580112 104 3914645

这些数字是多少? Unicode 代码点?如何打印实际字符?我使用的是 Ubuntu Linux,区域设置设置为 UTF-8

最佳答案

这一行是您遇到的问题:

dstring unichars =  to!dstring(unicodechars);

它将CodepointSet对象unicode返回转换为字符串,而不是它覆盖的字符。该集合有字符的名称和边界,但没有字符本身。花了这个:

InversionList!(GcPolicy)(CowArray!(GcPolicy)([1024, 1157, 1159, 1320, 1329, 1367, 1369, 1376, 1377, 1416, 1418, 1419, 1423, 1424, 3073, 3076, 3077, 3085, 3086, 3089, 3090, 3113, 3114, 3124, 3125, 3130, 3133, 3141, 3142, 3145, 3146, 3150, 3157, 3159, 3160, 3162, 3168, 3172, 3174, 3184, 3192, 3200, 7467, 7468, 7544, 7545, 11744, 11776, 42560, 42648, 42655, 42656, 64275, 64280, 5]))

并从该字符串中提取随机字符!相反,您想要:

dstring unichars =  to!dstring(unicodechars.byCodepoint);

在该对象上调用 byCodepoint 方法将产生该范围内的实际字符(嗯,代码点,unicode 很困惑),然后从中获取一个字符串并将其随机化。

关于unicode - D语言: How to print Unicode characters to the console?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43849292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com