AggregateCommand.substr(value: Expression[]): Object
聚合操作符。返回字符串从指定位置开始的指定长度的子字符串。它是 db.command.aggregate.substrBytes
的别名,更推荐使用后者。
参数
value: Expression[]
[<表达式1>, <表达式2>, <表达式3>]
返回值
Object
API 说明
substr
的语法如下:
db.command.aggregate.substr([<表达式1>, <表达式2>, <表达式3>])
表达式1
是任何可以解析为字符串的有效表达式,表达式2
和 表达式3
是任何可以解析为数字的有效表达式。
如果 表达式2
是负数,返回的结果为 ""
。
如果 表达式3
是负数,返回的结果为从 表达式2
指定的开始位置以及之后其余部分的子字符串。
示例代码
假设集合 students
的记录如下:
{ "birthday": "1999/12/12", "firstName": "Yuanxin", "group": "a", "lastName": "Dong", "score": 84 }
{ "birthday": "1998/11/11", "firstName": "Weijia", "group": "a", "lastName": "Wang", "score": 96 }
{ "birthday": "1997/10/10", "firstName": "Chengxi", "group": "b", "lastName": "Li", "score": 80 }
借助 substr
可以提取 birthday
中的年、月、日信息,代码如下:
const $ = db.command.aggregate
db
.collection('students')
.aggregate()
.project({
_id: 0,
year: $.substr(['$birthday', 0, 4]),
month: $.substr(['$birthday', 5, 2]),
day: $.substr(['$birthday', 8, -1])
})
.end()
返回的结果如下:
{ "day": "12", "month": "12", "year": "1999" }
{ "day": "11", "month": "11", "year": "1998" }
{ "day": "10", "month": "10", "year": "1997" }