如何在 MongoDB 查询中修剪字段中的空格?
若要修剪字段中的空格,请在 MongoDB 中使用 $trim。让我们创建一个包含以下文档的集合 -
> db.demo217.insertOne({"FullName":" Chris Brown"}); { "acknowledged" : true, "insertedId" : ObjectId("5e3e5d1e03d395bdc213470f") } > db.demo217.insertOne({"FullName":" David Miller"}); { "acknowledged" : true, "insertedId" : ObjectId("5e3e5d2503d395bdc2134710") } > db.demo217.insertOne({"FullName":" John Doe"}); { "acknowledged" : true, "insertedId" : ObjectId("5e3e5d2b03d395bdc2134711") }
借助 find() 方法在集合中显示所有文档 -
> db.demo217.find();
这会生成以下输出 -
{ "_id" : ObjectId("5e3e5d1e03d395bdc213470f"), "FullName" : " Chris Brown" } { "_id" : ObjectId("5e3e5d2503d395bdc2134710"), "FullName" : " David Miller" } { "_id" : ObjectId("5e3e5d2b03d395bdc2134711"), "FullName" : " John Doe" }
以下是 MongoDB 中修剪字段中空格的查询 -
> db.demo217.aggregate([ ... { $project: { Name: { $trim: { input: "$FullName" } } } } ... ])
这会生成以下输出 -
{ "_id" : ObjectId("5e3e5d1e03d395bdc213470f"), "Name" : "Chris Brown" } { "_id" : ObjectId("5e3e5d2503d395bdc2134710"), "Name" : "David Miller" } { "_id" : ObjectId("5e3e5d2b03d395bdc2134711"), "Name" : "John Doe" }
广告