by Ricardo “Rudxain” Fernández Serrata
Version 4 (September 26, 2023)
Download (129 downloads)
An updated fork of "📝🎲 Random Array Maker", originally by Alecontin: llamalab.com/automate/community/flows/27548
This recognizes most Unicode code-points. You can choose to delete whitespace. And auto-deletes duplicates.
`findAll(A, "(?s).")` splits the characters (UTF-16 code-points).
`split(A)` splits the code-units (unless you use the Unicode-Aware flag, "(?u)").
`findAll` recognizes surrogate pairs (but NOT double surrogates, which are 64bits wide), while split is more low-level because it splits 16b (2Byte) values. This makes `findAll` slow but correct when compared to `split`.
Rudxain profile: llamalab.com/automate/community/flows/42921
LICENSE: https://unlicense.org
5 stars | 2 | |
4 stars | 1 | |
3 stars | 0 | |
2 stars | 0 | |
1 star | 0 | |
Reports | 0 |
Rate and review within the app in the Community section.