英文:
MongoDB how to search by using regex but avoiding case sensitive?
问题
这是我目前完成的部分:
filter := bson.M{
"$or": bson.A{
bson.M{"title": bson.M{"$regex": "input"}},
bson.M{"author": bson.M{"$regex": "input"}},
bson.M{"content": bson.M{"$regex": "input"}},
},
}
p.postProposalCollection.Find(ctx, filter)
但它是区分大小写的,有没有办法将列 title
、author
、content
转换为小写,然后尝试使用正则表达式进行搜索。
英文:
Here is what I have done so far
filter := bson.M{
"$or": bson.A{
bson.M{"title": bson.M{"$regex": "input"}},
bson.M{"author": bson.M{"$regex": "input"}},
bson.M{"content": bson.M{"$regex": "input"}},
},
}
p.postProposalCollection.Find(ctx, filter)
but it is case sensitive, is there anyway to lowercase the column title
, author
, content
then try to search with regex.
答案1
得分: 1
要进行不区分大小写的正则表达式搜索,您可以使用带有"i"标志的Regex原语:
bson.M{"title": bson.M{"$regex": primitive.Regex{Pattern: "input", Options: "i"}}},
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论