PowerToys/Wox.Infrastructure/StringMatcher.cs
2015-02-07 16:53:33 +08:00

34 lines
969 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Infrastructure
{
public class StringMatcher
{
/// <summary>
/// Check if a candidate is match with the source
/// </summary>
/// <param name="source"></param>
/// <param name="candidate"></param>
/// <returns>Match score</returns>
public static int Match(string source, string candidate)
{
if (string.IsNullOrEmpty(source) || string.IsNullOrEmpty(candidate)) return 0;
FuzzyMatcher matcher = FuzzyMatcher.Create(candidate);
int score = matcher.Evaluate(source).Score;
if (score > 0) return score;
score = matcher.Evaluate(source.Unidecode()).Score;
return score;
}
public static bool IsMatch(string source, string candidate)
{
return Match(source, candidate) > 0;
}
}
}