欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python mongodb 正则查询

程序员文章站 2022-07-13 21:46:24
...
result = db.devices.find({'$and':[{'stats.fwver': v},{'username':{'$regex':r'(?i)ltu'}}]})#匹配ltu

result = db.devices.find({'$and':[{'stats.fwver': v},{'username':{'$regex':r'^[\d+]'}}]})#匹配数字
相关标签: python mongodb