FuzzySearch.Net
0.2.3
See the version list below for details.
dotnet add package FuzzySearch.Net --version 0.2.3
NuGet\Install-Package FuzzySearch.Net -Version 0.2.3
<PackageReference Include="FuzzySearch.Net" Version="0.2.3" />
paket add FuzzySearch.Net --version 0.2.3
#r "nuget: FuzzySearch.Net, 0.2.3"
// Install FuzzySearch.Net as a Cake Addin #addin nuget:?package=FuzzySearch.Net&version=0.2.3 // Install FuzzySearch.Net as a Cake Tool #tool nuget:?package=FuzzySearch.Net&version=0.2.3
FuzzySearchNet
Fuzzy search strings using levenshtein distance.
This package can be used to search strings for sub sequences with a specified max levenshtein distance. Multiple matches with their indexes and distances will be returned if found.
Inspired by fuzzysearch for python (https://github.com/taleinat/fuzzysearch) and to some extent follows the same conventions.
Installation
Build from source or download NuGet package: https://www.nuget.org/packages/FuzzySearch.Net
Target frameworks .Net 6 and .Net Standard 2.1
Usage
Searching for strings in strings
// Search with default options, substitutions, insertions, deletions and default maximum distance (3)
var results = FuzzySearch.Find("sometext", "here is someteext for you");
// Search with specified maximum distance
var results = FuzzySearch.Find("sometext", "here is someteext for you", 1);
// Search using only substitutions and default maximum distance (3)
var results = FuzzySearch.Find("sometext", "here is someteext for you", SearchOptions.SubstitutionsOnly);
// Search using with more specific options, for example allowing more substitutions than insertions and deletions
var results = FuzzySearch.Find(word, text, new FuzzySearchOptions(3, 1, 1));
// Check for any matches using Linq. Using Any or First is more efficient than count since enumeration will stop after first match.
// This will not necessarily yield the best match though.
if(FuzzySearch.Find(word, text, 2).Any()) {
// do stuff
}
// Find returns a list of MatchResults with information about matches
public class MatchResult
{
public int StartIndex { get; set; }
public int EndIndex { get; set; }
public int Distance { get; set; }
public string Match { get; set; } = "";
public int Deletions { get; set; }
public int Substitutions { get; set; }
public int Insertions { get; set; }
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- No dependencies.
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Add support for finding in streams for exact and substitution only. Properly use yield and ienumerable to allow usage of linq methods