您的位置:首页 > 博客中心 > 数据库 >

【MongoDB】The Regex Expression query of MongoDB

时间:2022-03-14 00:08

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

gxlsystem.com,布布扣

The expression is also able to combination with other expression.

gxlsystem.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. 




热门排行

今日推荐

热门手游