Skip to content

unicodeToArray() function

Unicodestringを配列に変換します。

Signature:

typescript
declare function unicodeToArray(string: string): [] | RegExpMatchArray;

Example

ts
unicodeToArray("🙇‍♂️🤩😭"); // ['🙇‍♂️','🤩','😭'];

Open Source Code

Released under the Apache-2.0 License.