當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。