你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

unicode_codepoints_from_string()

适用于:✅Microsoft Fabric✅Azure 数据资源管理器Azure MonitorMicrosoft✅ Sentinel

返回输入字符串的 Unicode 码位的动态数组。 此函数是 unicode_codepoints_to_string() 函数的反运算。

弃用的别名:to_utf8()

语法

unicode_codepoints_from_string(value)

详细了解语法约定

参数

客户 类型​​ 必需 Description
value string ✔️ 要转换的源字符串。

返回

返回由字符的 Unicode 码位组成的动态数组,这些字符组成提供给此函数的字符串。 请参阅 unicode_codepoints_to_string()

示例

print arr = unicode_codepoints_from_string("⒦⒰⒮⒯⒪")

输出

arr
[9382, 9392, 9390, 9391, 9386]
print arr = unicode_codepoints_from_string("קוסטו - Kusto")

输出

arr
[1511, 1493, 1505, 1496, 1493, 32, 45, 32, 75, 117, 115, 116, 111]
print str = unicode_codepoints_to_string(unicode_codepoints_from_string("Kusto"))

输出

str
Kusto