数値のパターンマッチングを実行する場合、mongoでそれを実行する方法は、$ where式を使用して、パターンマッチを渡すことです。
> db.test.find({ $where: "/^123.*/.test(this.example)" })
{ "_id" : ObjectId("4bfc3187fec861325f34b132"), "example" : 1234 }
数値のパターンマッチングを実行する場合、mongoでそれを実行する方法は、$ where式を使用して、パターンマッチを渡すことです。
> db.test.find({ $where: "/^123.*/.test(this.example)" })
{ "_id" : ObjectId("4bfc3187fec861325f34b132"), "example" : 1234 }