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
{{ message }}
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
Ability to set, usually necessary, regexp flags. It may not be all, but just basic ones.
Motivation
Attempting to search for the following regexp '.*?version__' when it's known that it may have different case leads to a regexp like so '.*?(?:version|VERSION|Version)__' instead of just '.*?version__' with the "i" flag for a non-case-sensitive pattern.
Describe alternatives you've considered
constOni=OnigRegExp(`.*?version__`,'i');
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Summary
Ability to set, usually necessary, regexp flags. It may not be all, but just basic ones.
Motivation
Attempting to search for the following regexp
'.*?version__'
when it's known that it may have different case leads to a regexp like so'.*?(?:version|VERSION|Version)__'
instead of just'.*?version__'
with the "i" flag for a non-case-sensitive pattern.Describe alternatives you've considered
The text was updated successfully, but these errors were encountered: