我正在寻找一个操作符,它允许我检查字段的值是否包含某个字符串。

喜欢的东西:

db.users.findOne({$contains:{"username":"son"}})

这可能吗?


当前回答

由于Mongo shell支持正则表达式,这是完全可能的。

db.users.findOne({"username" : /.*son.*/});

如果我们想让查询不区分大小写,我们可以使用"i"选项,如下所示:

db.users.findOne({"username" : /.*son.*/i});

参见:http://www.mongodb.org/display/DOCS/Advanced + # AdvancedQueries-RegularExpressions查询

其他回答

https://docs.mongodb.com/manual/reference/sql-comparison/

http://php.net/manual/en/mongo.sqltomongo.php

MySQL

SELECT * FROM users WHERE username LIKE "%Son%"

MongoDB

db.users.find({username:/Son/})

理想答案其使用指标 I选项不区分大小写

db.users.findOne({"username" : new RegExp(search_value, 'i') });

如何在RegExp匹配中忽略HTML标签:

var text = '<p>The <b>tiger</b> (<i>Panthera tigris</i>) is the largest <a href="/wiki/Felidae" title="Felidae">cat</a> <a href="/wiki/Species" title="Species">species</a>, most recognizable for its pattern of dark vertical stripes on reddish-orange fur with a lighter underside. The species is classified in the genus <i><a href="/wiki/Panthera" title="Panthera">Panthera</a></i> with the <a href="/wiki/Lion" title="Lion">lion</a>, <a href="/wiki/Leopard" title="Leopard">leopard</a>, <a href="/wiki/Jaguar" title="Jaguar">jaguar</a>, and <a href="/wiki/Snow_leopard" title="Snow leopard">snow leopard</a>. It is an <a href="/wiki/Apex_predator" title="Apex predator">apex predator</a>, primarily preying on <a href="/wiki/Ungulate" title="Ungulate">ungulates</a> such as <a href="/wiki/Deer" title="Deer">deer</a> and <a href="/wiki/Bovid" class="mw-redirect" title="Bovid">bovids</a>.</p>';
var searchString = 'largest cat species';

var rx = '';
searchString.split(' ').forEach(e => {
  rx += '('+e+')((?:\\s*(?:<\/?\\w[^<>]*>)?\\s*)*)';
});

rx = new RegExp(rx, 'igm');

console.log(text.match(rx));

这可能很容易变成一个MongoDB聚合过滤器。

由于Mongo shell支持正则表达式,这是完全可能的。

db.users.findOne({"username" : /.*son.*/});

如果我们想让查询不区分大小写,我们可以使用"i"选项,如下所示:

db.users.findOne({"username" : /.*son.*/i});

参见:http://www.mongodb.org/display/DOCS/Advanced + # AdvancedQueries-RegularExpressions查询

对于聚合框架


领域搜索

('$options': 'i'用于不区分大小写搜索)

db.users.aggregate([
    {
        $match: {
            'email': { '$regex': '@gmail.com', '$options': 'i' }
        }
    }
]);

全文检索

(仅适用于文本索引的字段

db.articles.aggregate([
    {
        $match: { $text: { $search: 'brave new world' } }
    }
])