如何显示哪个字段应包含(。)点
的所有文档我使用以下查询显示字段(名称)包含(。)点,但它显示集合中的所有内容,
db.getCollection('test').find({
"name": { $regex : ".*..*" }
})
请告诉我如何获取名称'字段包含(。)点。
答案 0 :(得分:1)
I got the MongoDB documents for field value that contains.(Dot) using the following Query.
//MongoDB Query - Get document list if name field value contains .(Dot),
db.getCollection('test').find(
{
"name": { $regex : ".*\\.." }
})
Thanks & Regards,
Madhumathi Velusamy.