PowerToys/Wox.Infrastructure/FuzzyMatcher.cs

33 lines
849 B
C#
Raw Normal View History

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
{
2014-03-24 21:14:10 +08:00
private string query;
private MatchOption opt;
2014-03-24 21:14:10 +08:00
private FuzzyMatcher(string query, MatchOption opt)
{
2014-03-24 21:14:10 +08:00
this.query = query.Trim();
this.opt = opt;
}
2014-03-24 21:14:10 +08:00
public static FuzzyMatcher Create(string query)
{
return new FuzzyMatcher(query, new MatchOption());
}
2014-03-24 21:14:10 +08:00
public static FuzzyMatcher Create(string query, MatchOption opt)
{
2014-03-24 21:14:10 +08:00
return new FuzzyMatcher(query, opt);
}
public MatchResult Evaluate(string str)
{
return StringMatcher.Instance.FuzzyMatch(query, str, opt);
}
2014-03-24 21:14:10 +08:00
}
}