如何找到数据库中的所有对象,其中对象的字段包含子字符串?
如果该字段是具有字符串值的集合对象中的 A:
我想在 db“数据库”中找到所有对象,其中 A 包含一个子字符串,比如“abc def”。
我试过:
db.database.find({A: {$regex: '/^*(abc def)*$/''}})
但没有用
更新
一个真正的字符串(在 unicode 中):
Sujet Commentaire sur Star Wars Episode III - La Revanche des Sith 1
需要用 Star Wars 搜索所有条目
db.test.find({A: {$regex: '^*(star wars)*$''}}) not wokring