Answers for "$mongodb check substring in match"

0

mongodb check if substring in string

#all documents whose description field contains anywhere
#in the text the "beach" sub string
query = db.collection.find({
  "description" : {"$regex" : ".*beach.*"}
})
Posted by: Guest on February-25-2021

Code answers related to "$mongodb check substring in match"

Python Answers by Framework

Browse Popular Code Answers by Language