mondodb $ regex for Mobile Number,带或不带国家代码

时间:2016-02-24 07:42:13

标签: regex mongodb

我想找一些来自mongodb的记录 我有一些数字3333333333存储在数据库中,我想通过+913333333333找到它 我无法找到实际查询,我已经尝试但未找到记录3333333333 +913333333333。请告诉我。

1 个答案:

答案 0 :(得分:0)

可能不是完美的解决方案。但它现在有效。

    var numberFilterArray = [number.slice(-10), number.slice(-9), number.slice(-8)];

    db.getCollection('event').find({"participants.number":{$in : numberFilterArray}});