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
Hello,
Consider the following code fragment. Neither [] nor ? seem to match a single character if it's outside the standard ASCII range.
package main import "fmt" import "github.com/gobwas/glob" func main() { fmt.Println(glob.MustCompile("hell[o]").Match("hello")) // true fmt.Println(glob.MustCompile("ångstr[ö]m").Match("ångström")) // false fmt.Println(glob.MustCompile("hell?").Match("hello")) // true fmt.Println(glob.MustCompile("ångstr?m").Match("ångström")) // false }
Thank you.
The text was updated successfully, but these errors were encountered:
I have same issue.
Sorry, something went wrong.
No branches or pull requests
Hello,
Consider the following code fragment. Neither [] nor ? seem to match a single character if it's outside the standard ASCII range.
Thank you.
The text was updated successfully, but these errors were encountered: