$toLower将字符串转换为小写
基础语法: { $toLower: <expression> }
$toUpper将字符串转换为小写
基础语法: { $ toUpper : < expression > }
< expression > 为需要转换的字符串。
注:
1.仅对于ASCII字符字符串有效,见示例第六条
2.< expression >为null时,返回空字符串"",见示例第五条
示例:
db.getCollection("test1").aggregate({
$project: {
"a1": "$article_authors",
"a2":{ $toLower: "$article_authors" },
"a3":{ $toUpper : "$article_authors" },
}
})
示例
网友评论