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
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.
by sebastien.geffroy:
The text was updated successfully, but these errors were encountered: