thiagozs / go-fuzzysh

wrapper for algorithm fuzzy search

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-fuzzysh - wrapper for algorithm fuzzy search

Start with search

fz, err := fuzzy.NewSearcher(nil)
if err != nil {
        panic(err)
}

fz.SetTerm("test")
fz.SetTerms([]string{"test", "test2", "test3"})

res := fz.Search(fz.GetTerm())

for _, r := range res {
        fmt.Printf("%+v\n", r)
}

Versioning and license

Our version numbers follow the semantic versioning specification. You can see the available versions by checking the tags on this repository. For more details about our license model, please take a look at the LICENSE file.

2022, thiagozs.

About

wrapper for algorithm fuzzy search

License:Other


Languages

Language:Go 100.0%