我正在尝试根据查找结果创建一个新集合。
如果我这样做,请从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})
怎么了?
答案 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