如何检查Mongo DB字段值包含。(点)

时间:2017-11-06 05:37:48

标签: mongodb mongodb-query

如何显示哪个字段应包含(。)点

的所有文档

我使用以下查询显示字段(名称)包含(。)点,但它显示集合中的所有内容,

db.getCollection('test').find({
    "name": { $regex : ".*..*" }
})

请告诉我如何获取名称'字段包含(。)点。

1 个答案:

答案 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.