-
Notifications
You must be signed in to change notification settings - Fork 17.8k
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
Regexp package : panic on repeated closure #484
Labels
Comments
There are many dialects of regular expressions. Go's regexp package implements a simple regular expression library. http://golang.org/pkg/regexp/ The error message complains about 'repeated closure (**, ++, etc.)'. Isn't your use of '+?' a repeated closure? |
Package regexp does not support non-capturing parens (?:...) nor does it support "non-greedy" operators like +? Eventually there will be a replacement that does all these things but for now, this is working as intended. Owner changed to r...@golang.org. Status changed to WorkingAsIntended. |
Issue #540 has been merged into this issue. |
Closed
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
by sebastien.geffroy:
The text was updated successfully, but these errors were encountered: