如何寻找一个集合中列在MongoDB中有$in
,其中包括搜索元素的数组,也caseInsensitive
列这些元素的匹配?
Answer 1:
您可以使用$ elemMatch使用正则表达式搜索,比如我们搜索以下集合中的“ 蓝 ”色:
db.items.save({
name : 'a toy',
colors : ['red', 'BLUE']
})
> ok
db.items.find({
'colors': {
$elemMatch: {
$regex: 'blue',
$options: 'i'
}
}
})
>[
{
"name": "someitem",
"_id": { "$oid": "4fbb7809cc93742e0d073aef"},
"colors": ["red", "BLUE"]
}
]
Answer 2:
使用$在与匹配是不区分大小写:
数据例如:
{
name : "...Event A",
fieldX : "aAa"
},
{
name : "...Event B",
fieldX : "Bab"
},
{
name : "...Event C",
fieldX : "ccC"
},
{
name : "...Event D",
fieldX : "dDd"
}
我们希望文件是“fieldX”包含在阵列(optValues)的任何值:
var optValues = ['aaa', 'bbb', 'ccc', 'ddd'];
var optRegexp = [];
optValues.forEach(function(opt){
optRegexp.push( new RegExp(opt, "i") );
});
db.collection.find( { fieldX: { $in: optRegexp } } );
这适用于所有$无论是。
我希望这有帮助!
PS:这是我的解决方案通过标签在web应用中进行搜索。
Answer 3:
这完全适用于我。
从代码我们可以创建这样的自定义查询:
{
"first_name":{
"$in":[
{"$regex":"^serina$","$options":"i"},
{"$regex":"^andreW$","$options":"i"}
]
}
}
这将转化为查询后按照蒙戈:
db.mycollection.find({"first_name":{"$in":[/^serina$/i, /^andreW$/i]}})
同为“$万年”。
Answer 4:
这里是我的不区分大小写的搜索(查询)从阵列的数据的多个条件(正则表达式),我用$in
,但它不支持不区分大小写。
示例数据
{
name : "...Event A",
tags : ["tag1", "tag2", "tag3", "tag4]
},
{
name : "...Event B",
tags : ["tag3", "tag2"]
},
{
name : "...Event C",
tags : ["tag1", "tag4"]
},
{
name : "...Event D",
tags : ["tag2", "tag4"]
}
我的查询
db.event.find(
{ $or: //use $and or $or depends on your needs
[
{ tags : {
$elemMatch : { $regex : '^tag1$', $options : 'i' }
}
},
{ tags : {
$elemMatch : { $regex : '^tag3$', $options : 'i' }
}
}
]
})
Answer 5:
这很简单
const sampleData = [
RegExp("^" + 'girl' + "$", 'i'),
RegExp("^" + 'boy' + "$", 'i')
];
const filerObj = { gender : {$in : sampleData}};
Answer 6:
要做到这一点在Java中的方法是:
List<String> nameList = Arrays.asList(name.split(PATTERN));
List<Pattern> regexList = new ArrayList<>();
for(String name: nameList) {
regexList.add(Pattern.compile(name , Pattern.CASE_INSENSITIVE));
}
criteria.where("Reference_Path").in(regexList);
文章来源: Case Insensitive search with $in