Можете да направите това с $where
чрез създаване на RegExp
за string1
и след това да го тествате спрямо string2
:
db.test.find({$where: 'RegExp(this.string1).test(this.string2)'})
Въпреки това, ако използвате MongoDB 3.4+, можете да направите това по-ефективно, като използвате $indexOfCP
оператор за агрегиране:
db.test.aggregate([
// Project the index of where string1 appears in string2, along with the original doc.
{$project: {foundIndex: {$indexOfCP: ['$string2', '$string1']}, doc: '$$ROOT'}},
// Filter out the docs where the string wasn't found
{$match: {foundIndex: {$ne: -1}}},
// Promote the original doc back to the root
{$replaceRoot: {newRoot: '$doc'}}
])
Или по-директно, като също използвате $redact
:
db.test.aggregate([
{$redact: {
$cond: {
if: { $eq: [{$indexOfCP: ['$string2', '$string1']}, -1]},
then: '$$PRUNE',
else: '$$KEEP'
}
}}
])