We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
{a,}{a,}a
a
The following program printsfalse:
false
package mainimport ("fmt""github.com/gobwas/glob")funcmain() {g,err:=glob.Compile("{a,}{a,}a")iferr!=nil {panic(err)}fmt.Println(g.Match("a"))}