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
Thanks for the useful tool. It seems that the matcher does not deal well with uppercases. For instance:
import ( "fmt" "github.com/schollz/closestmatch" ) func main() { fmt.Println("Hello, playground") words := []string{ "foo", "bar", "faz", } bagSize := []int{2} cm := closestmatch.New(words, bagSize) fmt.Println(cm.Closest("fooo")) fmt.Println(cm.Closest("FOO")) }
https://play.golang.org/p/M9IMnrqRUsG does not find anything for FOO.
The text was updated successfully, but these errors were encountered:
@JazzyPierrot: Looks like closestmatch normalizes all entries to lowercase. So you can work around by sanitizing your input the same way.
closestmatch
Sorry, something went wrong.
No branches or pull requests
Thanks for the useful tool.
It seems that the matcher does not deal well with uppercases. For instance:
https://play.golang.org/p/M9IMnrqRUsG
does not find anything for FOO.
The text was updated successfully, but these errors were encountered: