Home

Awesome

ScoreSharp

ScoreSharp is a fuzzy string search algorithm.

What it does

How to use it

It's simple:

ScoreSharp.score("I want to find something here", "something") // => Shows the percentage score

ScoreSharp.score("I want to use some fuzzy", "som fuzy", 0.12) // => Shows the percentage, even with some mistakes

string[] myList = new string[] { "Hi!","Hello","Hi and Hello", "Hello there!" }; myList = ScoreSharp.sorter(myList, "Hello");

Credits

It's based on the string_score from Joshaven Potter.