我正在尝试以下词干类:
static class StemmerSteps
{
public static string stepSufixremover(this string str, string suffex)
{
if (str.EndsWith(suffex))
{
................
}
return str;
}
public static string stepPrefixemover(this string str, string prefix)
{
if (str.StartsWith(prefix)
{
.....................
}
return str;
}
}
此类使用一个前缀或后缀。是否有任何建议允许前缀或后缀列表通过类并与每个(str)进行比较。你的善举真的很感激。