実際には、pymongo
を使用することをお勧めします 、easy_install pymongo
でインストールします 、pymongoでは、次のことを試すことができます:
db.collections.find({'$and':[
{'field A':re.compile('your pattern')},
{'$ne':{'field A':'not exact word'}}
]})
ここでは、$ne
および$and
ネイティブのmongodbオペレーターである場合、詳細を見つけることができます mongodb advnace query