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
Add feature flags to adapt to the ability of the regular expressions.
When the feature flag unicode is set true, it can use a flag u.
When the feature flag namedCapture is set true, it can use a (?<named>) named capture and \k<named>.
When the feature flag upc is set true, it can use a \p to match an unicode property class.
The text was updated successfully, but these errors were encountered:
Add feature flags to adapt to the ability of the regular expressions.
When the feature flag
unicode
is set true, it can use a flag u.When the feature flag
namedCapture
is set true, it can use a(?<named>)
named capture and\k<named>
.When the feature flag
upc
is set true, it can use a\p
to match an unicode property class.The text was updated successfully, but these errors were encountered: