Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,所以我有一个集合,用户,类似于:
[ { name: 'André Alçada Padez', ... }, ... ]
我想使用过滤器在该集合中找到我的用户:
db.users.find({name: /andre/i})
或者
db.users.find({name: /alcada/i})
我怎样才能让 mongo 知道,"c"可以是 a"ç"还是"e"可以是 a "é"?
"c"
"ç"
"e"
"é"
谢谢