MongoDB 正则表达式

MongoDB 正则表达式

正则表达式在所有的编程语言中经常被用来在字符串中搜索模式或单词。MongoDB也提供了正则表达式的功能,用于字符串模式匹配,使用 $regex 操作符。MongoDB使用PCRE (Perl Compatible Regular Expression)作为正则表达式语言。

与文本搜索不同的是,我们不需要进行任何配置或命令来使用正则表达式。

假设我们已经在名为 posts 的数据库中插入了一个文档,如下所示 –

> db.posts.insert(
{
   "post_text": "enjoy the mongodb articles on tutorialspoint",
   "tags": [
      "mongodb",
      "tutorialspoint"
   ]
}
WriteResult({ "nInserted" : 1 })

使用正则表达式

下面的正则表达式查询搜索包含字符串 tutorialspoint 的所有帖子−

> db.posts.find({post_text:{$regex:"tutorialspoint"}}).pretty()
{
    "_id" : ObjectId("5dd7ce28f1dd4583e7103fe0"),
    "post_text" : "enjoy the mongodb articles on tutorialspoint",
    "tags" : [
        "mongodb",
        "tutorialspoint"
    ]
}
{
    "_id" : ObjectId("5dd7d111f1dd4583e7103fe2"),
    "post_text" : "enjoy the mongodb articles on tutorialspoint",
    "tags" : [
        "mongodb",
        "tutorialspoint"
    ]
}
>

同样的查询也可以写成 −

>db.posts.find({post_text:/tutorialspoint/})

使用正则表达式进行不区分大小写的匹配

为了使搜索不区分大小写,我们使用具有值为 $i$options 参数。以下命令将查找具有单词 tutorialspoint 的字符串,无论是小写还是大写。

>db.posts.find({post_text:{regex:"tutorialspoint",options:"$i"}})

这个查询返回的结果之一是包含以下单词的文档: tutorialspoint 以不同大小写形式出现 –

{
   "_id" : ObjectId("53493d37d852429c10000004"),
   "post_text" : "hey! this is my post on TutorialsPoint", 
   "tags" : [ "tutorialspoint" ]
}

使用正则表达式对数组元素进行操作

我们还可以在数组字段上使用正则表达式的概念。当我们实现标签功能时,这尤其重要。因此,如果您想要搜索所有具有以单词“教程”开头的标签的帖子(无论是tutorial还是tutorials还是tutorialpoint还是tutorialphp),您可以使用以下代码:

>db.posts.find({tags:{$regex:"tutorial"}})

优化正则表达式查询

  • 如果文档字段已被 索引 ,则查询将利用索引值匹配正则表达式。与正则表达式扫描整个集合相比,这使得搜索非常快速。

  • 如果正则表达式是 前缀表达式 ,则所有匹配项都应该以特定的字符串字符开头。例如,如果正则表达式是 ^tut ,则查询只需要搜索以 tut 开头的字符串。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程