MongoDB--字符串长度计算
db.event_coll.aggregate([{
$project:{
"road":1,
"length_Bytes":{$strLenBytes:"$road"},
"length_CP":{$strLenCP:"$road"}
}
}])
其中 $strLenBytes
以字节为单位进行统计(一个汉字占用三个字节,而一个英文占用一个字节),而 $strLenCP
以字符为单位进行统计(一个汉字算一个字符,一个英文字符也算一个字符)。