適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft Sentinel
入力文字列の Unicode コードポイントの動的配列を返します。 この関数は、 unicode_codepoints_to_string() 関数の逆演算です。
非推奨のエイリアス: to_utf8()
構文
unicode_codepoints_from_string(value)
構文規則について詳しく知る。
パラメーター
| 件名 | タイプ | Required | 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 |