我想在MongoDB中使用C#驱动程序进行全文搜索。
但是我看到在创建索引时,不能选择“ none”作为语言。 我希望字词能按原样匹配,也不要删除停用词。
答案 0 :(得分:1)
给出类型
# sample input
x <- c("Get rid of la but not lala")
# pattern with spaces flanking target word
y <- gsub(" la ", " ", x)
# output
> y
[1] "Get rid of but not lala"
您可以这样做:
public class Entity
{
public string Text;
}