Skip to content

Instantly share code, notes, and snippets.

@xexi
Created February 9, 2017 05:57
Show Gist options
  • Save xexi/eeff1ee639b412670a0432f66f524420 to your computer and use it in GitHub Desktop.
Save xexi/eeff1ee639b412670a0432f66f524420 to your computer and use it in GitHub Desktop.
db.collection('my_collection').find( { 'findData': 'MorefindOption',
$or : [
{ 'name' : { $regex: 'searchWord' , $options: 'ix' } },
{ 'adress' : { $regex: 'searchWord' , $options: 'ix' } }
] })
// more option available at google search -> mongodb regex option
// -> in mongo cli { name : /.*searchWord.*/i }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment