1
MongoDBデータベースにつぶやきがあります。構造:MongoDB集計ツイート - 大文字と小文字を区別しない
{
"_id" : ObjectId("111111111111111111"),
//...
"entities" : {
"hashtags" : [
{
"text" : "HASTAG",
"indices" : [
25,
33
]
}
],
},
}
{
"_id" : ObjectId("222222222222222222222"),
//...
"entities" : {
"hashtags" : [
{
"text" : "hashtag",
"indices" : [
25,
33
]
}
],
},
}
大文字と小文字を区別しないハッシュタグでグループ化するにはどうすればいいですか?
この例は大文字小文字を区別しても問題ありません。大文字と小文字を区別しないようにするには?
おかげ