You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unicode flag was removed from re in Python 3 but functions in regex. Without it regex will check the type first and try to do the right thing. Some of the other flags, like REVERSE or ASCII may be useful. Maybe even the fuzzy matching flags.
Needs investigation
The text was updated successfully, but these errors were encountered:
The
regex
library offers a number of additional flags over the builtinre
library.https://pypi.org/project/regex/#flags
The unicode flag was removed from
re
in Python 3 but functions inregex
. Without itregex
will check the type first and try to do the right thing. Some of the other flags, likeREVERSE
orASCII
may be useful. Maybe even the fuzzy matching flags.Needs investigation
The text was updated successfully, but these errors were encountered: