码迷,mamicode.com
首页 > 数据库 > 详细

【MongoDB】The Regex Expression query of MongoDB

时间:2014-09-23 01:28:03      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:mongodb

In the past two blogs, the topic mainly focus on the high query operation of mongodb.In this blog, we simply study the regex expression in the mongdb.  MongoDB also support the regex query. For example

bubuko.com,布布扣

The expression is also able to combination with other expression.

bubuko.com,布布扣


Notes: /^a/; /^a.*/; /^a.*$/ have the same result, however the later two have less efficiency than the first one. Because the later will scan all the things, but the first only scan the first character. 

The item:

-i : ignore the upper or low case 

-m: the begin ‘^‘ and end‘$‘ do work on every new line;

-x: ignore the blank character

-s:  since 1.9 version, adding it could make ‘.‘ reprent all the character. 

for example:

/a.*b/ does not matches "apple\nbanana" but /a.*b/s does. 




【MongoDB】The Regex Expression query of MongoDB

标签:mongodb

原文地址:http://blog.csdn.net/sxb0841901116/article/details/39462849

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!