MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

So finden Sie eine bestimmte Zeichenfolge im Schlüsselwertpaar in Mongodb

Regex mit mongodb verwenden

Das hat bei mir funktioniert

db.collection.find({"product":/laptop/})

Aktualisierte Antwort

Wenn Sie Variablen verwenden möchten, versuchen Sie Folgendes:

var abc = "laptop";
// other stuff
userdetails.find({"product":new RegExp(abc)}).toArray(function(err,result){
  if (err) console.log ("error: "+err);
  else 
  {    
    // if you want the length
    console.log(result.length);
    // if you actually want to see the results
    for (var i = 0; i < result.length; i++)
    {
      console.log(result[i]);
    }
  }
}); 

Noch einmal aktualisiert

var abc = "laptop";
// other stuff

// note this is case sensitive.  if abc = "Laptop", it will not find it
// to make it case insensitive, you'll need to edit the RegExp constructor
// to this: new RegExp("^"+abc+",|, "+abc+"(?!\w)", "i")

userdetails.find({"product":new RegExp("^"+abc+",|, "+abc+"(?!\w)")}).toArray(function(err,result){
  if (err) console.log ("error: "+err);
  else 
  {    
    // if you want the length
    console.log(result.length);
    // if you actually want to see the results
    for (var i = 0; i < result.length; i++)
    {
      console.log(result[i]);
    }
  }
});