Answers for "mongo string like"

8

mongodb find like

db.users.find({"name": /.*m.*/});

db.users.find({"name": /m/});

Items.find({"description": {$regex: ".*" + variable + ".*"}}).fetch();
Posted by: Guest on May-21-2020
3

like mongodb

db.collection.find( { "url": { "$regex": ".*a.*"} } );
Posted by: Guest on March-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language