“MongoDB $ en regex” Código de respuesta

MongoDB $ en regex

// Find user who has the first_name equal with "name" (case insensitive)
const users = await User.find({
	first_name: {
    	$in: [new RegExp(`^${name}$`, 'i'))]
    }
})
florinrelea

MongoDB regex

{ <field>: { $regex: /pattern/, $options: '<options>' } }
{ <field>: { $regex: 'pattern', $options: '<options>' } }
{ <field>: { $regex: /pattern/<options> } }
Adorable Angelfish

Respuestas similares a “MongoDB $ en regex”

Preguntas similares a “MongoDB $ en regex”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código