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

搜索引擎

开发平台:

ASP/ASPX

  1. using System;
  2. namespace Searcharoo.Common
  3. {
  4.     /// <summary>
  5.     /// IStopper 
  6.     /// </summary>
  7.     /// <remarks>
  8.     /// http://libraries.mit.edu/tutorials/general/stopwords.html
  9.     /// http://www.tbray.org/ongoing/When/200x/2003/07/11/Stopwords
  10.     /// 
  11.     /// slightly off-topic, anti-thesaurus or "site-configurable stop-words"
  12.     /// http://www.hastingsresearch.com/net/06-anti-thesaurus.shtml
  13.     /// </remarks>
  14.     public interface IStopper
  15.     {
  16.         /// <summary>
  17.         /// Returns the stemmed form of a word
  18.         /// </summary>
  19.         /// <param name="word">The word to stem. It must be capitalized</param>
  20.         /// <returns>The stemmed word</returns>
  21.         string StopWord(string word);
  22.     }
  23. }