We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I use the below regular expression, it works in Sublime but didn't work in glogg.
r= '(?s)^[\d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2}.\d{6}]\s[N]\s[Devproxy.cpp\s732(.?)21200888]\s$'
in Sublime
in glogg
The text was updated successfully, but these errors were encountered:
Released versions of glogg use QRegExp for matching. Looks like lookahead syntax should be (?=s).
The regex works as is in QRegularExpression based builds from master branch as well as in klogg fork.
Sorry, something went wrong.
No branches or pull requests
When I use the below regular expression, it works in Sublime but didn't work in glogg.
r= '(?s)^[\d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2}.\d{6}]\s[N]\s[Devproxy.cpp\s732(.?)21200888]\s$'
in Sublime
in glogg
The text was updated successfully, but these errors were encountered: