Fuzzy Search
Fuzzy Search enables developers to implement fuzzy string matching in Unity projects with minimal setup. Compare strings with approximate matching to find similar text patterns, useful for search functionality, autocomplete, and user input validation. Simple API with configurable matching ratios for flexible implementation.
com.hieki.fuzzy-search 
Install via UPM
Add to Unity Package Manager using this URL
https://www.pkglnk.dev/fuzzy-search.git README Markdown
Copy this to your project's README.md
## Installation
Add **Fuzzy Search** to your Unity project via Package Manager:
1. Open **Window > Package Manager**
2. Click **+** > **Add package from git URL**
3. Enter:
```
https://www.pkglnk.dev/fuzzy-search.git
```
[](https://www.pkglnk.dev/pkg/fuzzy-search)README
Fuzzy-Search
Simple fuzzy search for unity
How to use Fuzzy Search step by step
Import Package
Window > Package Manager > (+) Plus Button > Add Package form git Url
git URL:
https://github.com/hieki-chan/unity-search-fuzzy.git
Example
using Hieki.Search;
// Example
double ratio = Fuzzy.Ratio("something went wrong", "smthing go wrog");
Debug.Log(ratio); // unity
-> 0.4516
you can try this out for more!
No comments yet. Be the first!