mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-23 00:17:58 +08:00
33 lines
849 B
C#
33 lines
849 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Wox.Infrastructure
|
|||
|
{
|
|||
|
[Obsolete("This class is obsolete and should not be used. Please use the static function StringMatcher.FuzzySearch")]
|
|||
|
public class FuzzyMatcher
|
|||
|
{
|
|||
|
private string query;
|
|||
|
private MatchOption opt;
|
|||
|
|
|||
|
private FuzzyMatcher(string query, MatchOption opt)
|
|||
|
{
|
|||
|
this.query = query.Trim();
|
|||
|
this.opt = opt;
|
|||
|
}
|
|||
|
|
|||
|
public static FuzzyMatcher Create(string query)
|
|||
|
{
|
|||
|
return new FuzzyMatcher(query, new MatchOption());
|
|||
|
}
|
|||
|
|
|||
|
public static FuzzyMatcher Create(string query, MatchOption opt)
|
|||
|
{
|
|||
|
return new FuzzyMatcher(query, opt);
|
|||
|
}
|
|||
|
|
|||
|
public MatchResult Evaluate(string str)
|
|||
|
{
|
|||
|
return StringMatcher.Instance.FuzzyMatch(query, str, opt);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|