How can I use 'Not Like' operator in MongoDB

I can use the SQL Like Operator using pymongo,

db.test.find({'c':{'$regex':'ttt'}})

But how can I use Not Like Operator?

I tried

db.test.find({'c':{'$not':{'$regex':'ttt'}})

but got error:

OperationFailure: $not cannot have a regex

101756 次浏览

来自 医生:

The $not operator does not support operations with the $regex 而是在驱动程序接口中使用//或 语言创建正则表达式的正则表达式能力 考虑下面这个使用模式匹配的示例 表达方式//:

db.inventory.find( { item: { $not: /^p.*/ } } )

编辑 (@idbentley) :

{$regex: 'ttt'}通常等效于 mongodb 中的 /ttt/,因此您的查询将变为:

db.test.find({c: {$not: /ttt/}}

EDIT2 (@KyungHoon Kim) :

In 巨蟒, below one works:

'c':{'$not':re.compile('ttt')}

可以使用不包含单词的正则表达式。另外,可以使用 $options => i进行不敏感的搜索。

不含 string

db.collection.find({name:{'$regex' : '^((?!string).)*$', '$options' : 'i'}})

Exact case insensitive string

db.collection.find({name:{'$regex' : '^string$', '$options' : 'i'}})

string开始

db.collection.find({name:{'$regex' : '^string', '$options' : 'i'}})

string结尾

db.collection.find({name:{'$regex' : 'string$', '$options' : 'i'}})

包含 string

db.collection.find({name:{'$regex' : 'string', '$options' : 'i'}})

把这个作为一个书签,并且作为你需要的任何其他修改的参考。 Http://www.cheatography.com/davechild/cheat-sheets/regular-expressions/