IStemming.cs
上传用户:huiyue
上传日期:2022-04-08
资源大小:1429k
文件大小:0k
源码类别:

搜索引擎

开发平台:

ASP/ASPX

  1. using System;
  2. namespace Searcharoo.Common
  3. {
  4.     /// <summary>
  5.     /// 
  6.     /// </summary>
  7.     public interface IStemming
  8.     {
  9.         /// <summary>
  10.         /// Returns the stemmed form of a word
  11.         /// </summary>
  12.         /// <param name="word">The word to stem. It must be capitalized</param>
  13.         /// <returns>The stemmed word</returns>
  14.         string StemWord(string word);
  15.     }
  16. }