gpt4 book ai didi

MongoDB : Remove last two characters from String

转载 作者:行者123 更新时间:2023-12-04 12:22:02 25 4
gpt4 key购买 nike

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

我尝试了以下解决方案,但没有奏效。

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

最佳答案

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

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

MongoDB Playground

关于MongoDB : Remove last two characters from String,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56537076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com