MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

MongoDB Regex Cerca su valore intero

Se vuoi eseguire un pattern match sui numeri, il modo per farlo in mongo è usare l'espressione $where e passare un pattern match.

> db.test.find({ $where: "/^123.*/.test(this.example)" })
{ "_id" : ObjectId("4bfc3187fec861325f34b132"), "example" : 1234 }