84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
想实现一个mongodb 不区分大小写的查询,比如,查询字段为key,key的值为 Rundown,现在想实现的查询的方式key能匹配Rundown ,rundown,但不会匹配Rundown1。请问这个该如何实现了。ps:我用的是mongdb的java 驱动开发,
Utilisez des expressions régulières, telles que :
db.xxx.find( { key: /^rundown$/i } );
{"key" : { "$regex" : "^rundonw1$",$options:"i"}}
Le but de l'écriture de ceci est d'être utilisé dans Criteria.regex("^rundonw1$", "i").
Utilisez des expressions régulières, telles que :
{"key" : { "$regex" : "^rundonw1$",$options:"i"}}
Le but de l'écriture de ceci est d'être utilisé dans Criteria.regex("^rundonw1$", "i").