unicode_codepoints_to_string()
返回由 Unicode 码位表示的字符串。 此函数是 unicode_codepoints_from_string()
函数的反运算。
弃用的别名:make_string()
语法
unicode_codepoints_to_string (
values)
详细了解语法约定。
参数
客户 | 类型 | 必需 | 描述 |
---|---|---|---|
值 | int、long 或 dynamic | ✔️ | 一个或多个要转换的逗号分隔值。 这些值也可以是动态数组。 |
注意
此函数最多接收 64 个参数。
返回
返回由 UTF 字符组成的字符串,其 Unicode 码位值由此函数的参数提供。 输入必须包含有效的 Unicode 码位计数。
如果任何参数不是有效的 Unicode 码位,该函数将返回 null
。
示例
print str = unicode_codepoints_to_string(75, 117, 115, 116, 111)
输出
str |
---|
Kusto |
print str = unicode_codepoints_to_string(dynamic([75, 117, 115, 116, 111]))
输出
str |
---|
Kusto |
print str = unicode_codepoints_to_string(dynamic([75, 117, 115]), 116, 111)
输出
str |
---|
Kusto |
print str = unicode_codepoints_to_string(75, 10, 117, 10, 115, 10, 116, 10, 111)
输出
str |
---|
K u 秒 T o |
print str = unicode_codepoints_to_string(range(48,57), range(65,90), range(97,122))
输出
str |
---|
0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz |