Answers for "mongodb aggregate match regex case insensitive"

1

mongodb regex case insensitive word

{name:{'$regex' : '.*string.*', '$options' : 'i'}}
Posted by: Guest on April-29-2021
0

mongodb regex case insensitive

db.collection.find({name:{'$regex' : '^((?!string).)*$', '$options' : 'i'}})
Posted by: Guest on July-31-2020

Code answers related to "mongodb aggregate match regex case insensitive"

Browse Popular Code Answers by Language