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 }