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
Take the following code:
package main import ( "fmt" "github.com/gobwas/glob" ) func main() { var g glob.Glob // create simple glob g = glob.MustCompile("foo\\bar") fmt.Printf("%+v", g.Match("foo\\bar")) }
It returns false although I would expect true. Using fmt.Printf("%+v", g.Match("foobar")) return true, although I would expect false.
false
true
fmt.Printf("%+v", g.Match("foobar"))
The text was updated successfully, but these errors were encountered:
I understand now that \\b matches literal b. To achieve the above I would need to use foo\\\\bar
\\b
b
foo\\\\bar
Sorry, something went wrong.
No branches or pull requests
Take the following code:
It returns
false
although I would expecttrue
. Usingfmt.Printf("%+v", g.Match("foobar"))
returntrue
, although I would expect false.The text was updated successfully, but these errors were encountered: