Right now Regex datums only support the i, g, and m flags. While ideally they would support as many flags as possible, the u (match unicode) flag would be really helpful.
Specifically the regex I'm using is regex(@"\b[\S]+\b", "g") to get all the words in a string and it chops off unicode chars at the beginning and end of words.
ID:2532344
Dec 26 2019, 12:50 pm
|
|||||||
| |||||||
Dec 26 2019, 2:38 pm
|
|
I'm not actually using the \u flag because all regexes count Unicode now. The fact that \b is ignoring valid letters is, I would say, really a bug.
|