参考 > 参考 > 经营者 > 聚合管道运营商 > $ toLower(汇总)
在本页面
$toLower
将字符串转换为小写,返回结果。
$toLower 具有以下语法:
{ $toLower: <expression> }
该参数可以是任何表达式 ,只要它可以解析为字符串即可。有关表达式的更多信息,请参见表达式。
如果参数解析为null,则$toLower返回一个空字符串""。
""
$toLower 仅对于ASCII字符字符串具有明确定义的行为。
考虑inventory包含以下文档的集合:
inventory
{ "_id" : 1, "item" : "ABC1", quarter: "13Q1", "description" : "PRODUCT 1" } { "_id" : 2, "item" : "abc2", quarter: "13Q4", "description" : "Product 2" } { "_id" : 3, "item" : "xyz1", quarter: "14Q2", "description" : null }
以下操作使用$toLower运算符返回小写item和小写description值:
item
description
db.inventory.aggregate( [ { $project: { item: { $toLower: "$item" }, description: { $toLower: "$description" } } } ] )
该操作返回以下结果:
{ "_id" : 1, "item" : "abc1", "description" : "product 1" } { "_id" : 2, "item" : "abc2", "description" : "product 2" } { "_id" : 3, "item" : "xyz1", "description" : "" }