ID:2532344
 
Applies to:DM Language
Status: Open

Issue hasn't been assigned a status value.
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.
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.