如何在MongoDB中删除String的后两个字符?
我已经尝试过以下解决方案,但是没有用。
$substr: [ "$document.field", 0, { $strLenCP: "$document.field" } - 2 ]
答案 0 :(得分:1)
您必须使用$add或$subrtract来评估新字符串的长度:
db.collection.aggregate([
{
$project: {
newStr: {
$substr: [ "$document.field", 0, { $add: [ { $strLenCP: "$document.field" }, -2 ] } ]
}
}
}
])