search

Home  >  Q&A  >  body text

mongodb 不区分大小写查询

想实现一个mongodb 不区分大小写的查询,比如,查询字段为key,key的值为 Rundown,
现在想实现的查询的方式key能匹配Rundown ,rundown,但不会匹配Rundown1。
请问这个该如何实现了。
ps:我用的是mongdb的java 驱动开发,

滿天的星座滿天的星座2789 days ago748

reply all(2)I'll reply

  • 仅有的幸福

    仅有的幸福2017-05-02 09:23:56

    Use regular expressions, such as:

    db.xxx.find( { key: /^rundown$/i } );

    reply
    0
  • 天蓬老师

    天蓬老师2017-05-02 09:23:56

    {"key" : { "$regex" : "^rundonw1$",$options:"i"}}

    The purpose of writing this is to be used in Criteria.regex("^rundonw1$","i").

    reply
    0
  • Cancelreply