当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


MongoDB $toLower用法及代码示例


MongoDB 提供了不同类型的 s中使用的字符串表达式运算符聚合管道阶段$toLower 操作符就是其中之一。这操作员用于将给定的字符串转换为小写。

用法:

{ $toLower:<expression> }


在这里,传入这个操作符的参数可以是任何有效的表达式,直到它们解析为字符串。如果输入的参数解析为空值,那么这个运算符将返回一个空字符串“”。

例子:

在以下示例中,我们正在使用:



Database: GeeksforGeeks

Collection:employee

Document: three documents that contain the details of the employees in the form of field-value pairs.

使用 $toLower 运算符:

在本例中,我们将把部门字段的值转换为小写。

db.employee.aggregate([
... {$match:{"name.first":"Aman"}},
... {$project:{dept:{$toLower:"$department"}}}])

在嵌入式文档中使用 $toLower 运算符:

在这个例子中,我们将把 name.first 字段的值转换为小写。

db.employee.aggregate([
... {$match:{department:"Development"}},
... {$project:{name:{$toLower:"$name.first"}}}])

相关用法


注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 MongoDB $toLower Operator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。