-
-
Notifications
You must be signed in to change notification settings - Fork 581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regex doesn't work correctly #430
Comments
Thanks for the report! Looks like it is treating the "start" of the next search location as the "start" of a line ( |
@dail8859 It seems there is a bug in Scintilla implementation of regexp. I want to include PCRE2 in project (and lua bindings for it) as best implementation and because QRegExp is weaker. |
@SimLV Agree that something better needs to be done with the regex engine. See #500 (comment) for a more indepth discussion. |
I think this could be closed in favor of #500 |
Agreed. |
for example:
text file:
asdasd asdasd
Search with regex: ^[A-Za-z]
will find 6 results, but must be only one
The text was updated successfully, but these errors were encountered: