unicode_codepoints_from_string()
Platí pro: ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
Vrátí dynamické pole s kódovými body Unicode vstupního řetězce. Tato funkce je inverzní operace unicode_codepoints_to_string()
funkce.
Zastaralé aliasy: to_utf8()
Syntaxe
unicode_codepoints_from_string(
value)
Přečtěte si další informace o konvencích syntaxe.
Parametry
Název | Type | Požadováno | Description |
---|---|---|---|
value | string |
✔️ | Zdrojový řetězec, který chcete převést. |
Návraty
Vrátí dynamické pole s kódovými body unicode znaků, které tvoří řetězec zadaný pro tuto funkci.
Viz unicode_codepoints_to_string()
)
Příklady
print arr = unicode_codepoints_from_string("⒦⒰⒮⒯⒪")
Výstup
arr |
---|
[9382, 9392, 9390, 9391, 9386] |
print arr = unicode_codepoints_from_string("קוסטו - Kusto")
Výstup
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"))
Výstup
Str |
---|
Kusto |