我正在寻找一个操作符,它允许我检查字段的值是否包含某个字符串。
喜欢的东西:
db.users.findOne({$contains:{"username":"son"}})
这可能吗?
我正在寻找一个操作符,它允许我检查字段的值是否包含某个字符串。
喜欢的东西:
db.users.findOne({$contains:{"username":"son"}})
这可能吗?
当前回答
对于聚合框架
领域搜索
('$options': 'i'用于不区分大小写搜索)
db.users.aggregate([
{
$match: {
'email': { '$regex': '@gmail.com', '$options': 'i' }
}
}
]);
全文检索
(仅适用于文本索引的字段
db.articles.aggregate([
{
$match: { $text: { $search: 'brave new world' } }
}
])
其他回答
如何在RegExp匹配中忽略HTML标签:
var text = '<p>The <b>tiger</b> (<i>Panthera tigris</i>) is the largest <a href="/wiki/Felidae" title="Felidae">cat</a> <a href="/wiki/Species" title="Species">species</a>, most recognizable for its pattern of dark vertical stripes on reddish-orange fur with a lighter underside. The species is classified in the genus <i><a href="/wiki/Panthera" title="Panthera">Panthera</a></i> with the <a href="/wiki/Lion" title="Lion">lion</a>, <a href="/wiki/Leopard" title="Leopard">leopard</a>, <a href="/wiki/Jaguar" title="Jaguar">jaguar</a>, and <a href="/wiki/Snow_leopard" title="Snow leopard">snow leopard</a>. It is an <a href="/wiki/Apex_predator" title="Apex predator">apex predator</a>, primarily preying on <a href="/wiki/Ungulate" title="Ungulate">ungulates</a> such as <a href="/wiki/Deer" title="Deer">deer</a> and <a href="/wiki/Bovid" class="mw-redirect" title="Bovid">bovids</a>.</p>';
var searchString = 'largest cat species';
var rx = '';
searchString.split(' ').forEach(e => {
rx += '('+e+')((?:\\s*(?:<\/?\\w[^<>]*>)?\\s*)*)';
});
rx = new RegExp(rx, 'igm');
console.log(text.match(rx));
这可能很容易变成一个MongoDB聚合过滤器。
如果需要搜索多个属性,可以使用$or。例如
Symbol.find(
{
$or: [
{ 'symbol': { '$regex': input, '$options': 'i' } },
{ 'name': { '$regex': input, '$options': 'i' } }
]
}
).then((data) => {
console.log(data)
}).catch((err) => {
console.log(err)
})
在这里,您将根据输入是否包含在符号属性或名称属性中进行搜索。
由于这是在搜索引擎的第一个点击之一,上面没有一个似乎适用于MongoDB 3。X,这里有一个正则表达式搜索是有效的:
db.users.find( { 'name' : { '$regex' : yourvalue, '$options' : 'i' } } )
不需要创建额外的索引或类似的。
从2.4版开始,您可以在字段上创建一个文本索引来进行搜索,并使用$text操作符进行查询。
首先,创建索引:
db.users。createIndex({"username": "text"})
然后,搜索:
db.users。查找({$text: {$search: "son"}})
基准测试(~150K文档):
Regex(其他答案)=> 5.6-6.9秒 文本搜索=> .164-。201秒
注:
A collection can have only one text index. You can use a wildcard text index if you want to search any string field, like this: db.collection.createIndex( { "$**": "text" } ). A text index can be large. It contains one index entry for each unique post-stemmed word in each indexed field for each document inserted. A text index will take longer to build than a normal index. A text index does not store phrases or information about the proximity of words in the documents. As a result, phrase queries will run much more effectively when the entire collection fits in RAM.
我使用这个代码,它的工作搜索子字符串
db.users.find({key: { $regex: new RegExp(value, 'i')}})