예제 #1
0
 public static FuzzyMatcher Create(string query, MatchOption opt)
 {
     return new FuzzyMatcher(query, opt);
 }
예제 #2
0
 private FuzzyMatcher(string query, MatchOption opt)
 {
     this.query = query.Trim();
     this.opt = opt;
 }