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
In the generated regular expression, dot characters in ranges are unnecessarily escaped. [_\.] can be written simply as [_.], as the dot character is always interpreted literally in a range [].
In the generated regular expression, dot characters in ranges are unnecessarily escaped.
[_\.]can be written simply as[_.], as the dot character is always interpreted literally in a range[].