共用方式為


unicode_codepoints_to_string()

適用於:✅Microsoft網狀架構Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel

傳回 Unicode 字碼點所表示的字串。 此函式是函式的 unicode_codepoints_from_string() 反向作業。

已被取代的別名: make_string()

語法

unicode_codepoints_to_string ()

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
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