#all documents whose description field contains anywhere #in the text the "beach" sub string query = db.collection.find({ "description" : {"$regex" : ".*beach.*"} })
db.users.findOne({"username" : {$regex : "son"}});