from = [:TPE, :TOKYO, :CHICHAGO]
where(
from: /.*#{from}.*/i,
)
Input documents
{
from: 'PARIS'
},
{
from: 'PARIS'
},
{
from: 'TOKYO'
},
{
from: 'TPE'
}
Output documents
{
from: 'TOKYO'
},
{
from: 'TPE'
}
from = [:TPE, :TOKYO, :CHICHAGO]
where(
from: /.*#{from}.*/i,
)
{
from: 'PARIS'
},
{
from: 'PARIS'
},
{
from: 'TOKYO'
},
{
from: 'TPE'
}
{
from: 'TOKYO'
},
{
from: 'TPE'
}
Copyright © 2021 Jogjafile Inc.
You can use an
$in
operator to see if a field matches anything in an array:Mongoid patches the MongoDB operators into
Symbol
as methods so you could also say:If you really are looking for values that contain any of the values in an array then you could just build a single regex that does that using alternation:
Note that there's no leading or trailing
.*
in the regex as that doesn't do anything useful. Also note the presence ofRegexp.escape
calls before the components are joined with the regex alternation operator (|
).