unicode_codepoints_to_string ()

傳回 Unicode 字碼點所代表的字串。 此函式是函式的 unicode_codepoints_from_string() 反向運算。

已被取代的別名: make_string ()

Syntax

unicode_codepoints_to_string ()

深入瞭解 語法慣例

參數

名稱 類型 必要 Description
int、long 或 dynamic ✔️ 要轉換的一或多個逗號分隔值。 這些值也可能是 動態陣列

注意

此函式最多可接收 64 個引數。

傳回

傳回由這個函式的自變數提供 Unicode 字碼點值的 UTF 字元所組成的字串。 輸入必須包含有效的 Unicode 字碼指標。 如果任何自變數不是有效的 Unicode 字碼點,函式會傳 null回 。

範例

print str = unicode_codepoints_to_string(75, 117, 115, 116, 111)

輸出

字串
Kusto
print str = unicode_codepoints_to_string(dynamic([75, 117, 115, 116, 111]))

輸出

字串
Kusto
print str = unicode_codepoints_to_string(dynamic([75, 117, 115]), 116, 111)

輸出

字串
Kusto
print str = unicode_codepoints_to_string(75, 10, 117, 10, 115, 10, 116, 10, 111)

輸出

字串
K
u
s
t
o
print str = unicode_codepoints_to_string(range(48,57), range(65,90), range(97,122))

輸出

字串
0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz