直接上代码:
cursor = reviews_collection.find({"text":{'$regex' : ".*atmosphere.*"}})
其中,reviews_collection是要进行查询的collection;"text"是要进行查询的键,对应的值为字符串类型;{'$regex' : ".*atmosphere.*"} 中 '$regex' 声明要使正则表达式进行查询, 跟在冒号后面的 ".*atmosphere.*&
直接上代码:
cursor = reviews_collection.find({"text":{'$regex' : ".*atmosphere.*"}})