moo icon indicating copy to clipboard operation
moo copied to clipboard

add `u`nicode flag where missing

Open loveencounterflow opened this issue 3 years ago • 0 comments

I realized that the below regex will be rejected with Invalid regular expression: [...] Range out of order in character class when using it in moo.compile() (Note: using extended syntax with extra whitespace for readability):

/// [        A-Z _ a-z \u{00a1}-\u{10ffff}  ] [  $ 0-9 A-Z _ a-z \u{00a1}-\u{10ffff}  ]* ///u

This can be fixed by using the u flag on lines 25 and 263. Of course, this is something of a hotfix because that would presumably turn all regexes into Unicode regexes (maybe a Good Thing?); therefore, I leave it to those with better acquaintance with the codebase to come up with a proper solution.

loveencounterflow avatar Oct 30 '22 17:10 loveencounterflow