命令行的mongodb结果与pymongo不同

时间:2015-03-05 19:15:11

标签: python regex mongodb pymongo

我正在尝试根据查找结果创建一个新集合。

如果我这样做,请从mongodb(robomongo)命令行

db.liCollection.find({current_companies : { $regex: /^DIKW/i }})

我从260万份文件中得到了11份文件。

现在,如果我尝试像这样使用pymongo:

from pymongo import MongoClient

uri = "mongodb://user:password@example.com/the_database"
client = MongoClient('pcloud')

# connect to the liDB
li_db = client['liDB']

#get all dikw employees
dikw_current = li_db.liCollection.find({'current_companies':{'$regex':'/^DIKW/i'}})

list(dikw_current)

同样这样使用正则表达式没有结果......

import re
regx = re.compile("/^DIKW/i", re.IGNORECASE)
li_db.liCollection.find_one({"current_companies": regx})

怎么了?

2 个答案:

答案 0 :(得分:2)

使用pymongo,因为你正在使用python正则表达式,所以你不要在正则表达式中使用斜杠作为分隔符。见why

将您的查询更改为li_db.liCollection.find_one({"current_companies": "^DIKW"})。如果您需要在正则表达式中指定选项,请使用re.compile

import re
regx = re.compile("^DIKW", re.IGNORECASE)
li_db.liCollection.find_one({"current_companies": regx})

答案 1 :(得分:0)

我刚刚发现你也可以使用$regex语法。 您不需要导入re模块并使用python正则表达式:只需添加$options参数,它也可以在pymongo上运行。

db.liCollection.find({'current_companies' : {'$regex': '^DIKW', '$options': 'i'}})

来源:https://docs.mongodb.org/manual/reference/operator/query/regex/#op._S_options