MongoDB:从字符串中删除最后两个字符

时间:2019-06-11 05:33:21

标签: mongodb substring substr

如何在MongoDB中删除String的后两个字符?

我已经尝试过以下解决方案,但是没有用。

   $substr: [ "$document.field", 0, { $strLenCP: "$document.field" } - 2 ]

1 个答案:

答案 0 :(得分:1)

您必须使用$add$subrtract来评估新字符串的长度:

db.collection.aggregate([
    {
        $project: {
            newStr: {
                $substr: [ "$document.field", 0, { $add: [ { $strLenCP: "$document.field" }, -2 ] } ]
            }
        }
    }
])

MongoDB Playground