收藏
回答

云开发正则表达式

框架类型 问题类型 终端类型 AppID 基础库版本
小程序 需求 工具 wx105ea8361b1eaa46 2.4.3

- 需求的场景描述(希望解决的问题)

const countResult = await db.collection(event.part).where({   

    "Part No": db.RegExp({

      regexp: 'M051*',

      options: 'i',

    }),   

  }).count({

    success: function (res) {

      console.log(res.total)

    }

  })

为何结果把M052LDN也搜出来了?

- 希望提供的能力


回答关注问题邀请回答
收藏

1 个回答

  • 邓坤力
    邓坤力
    2018-12-29

    你需要的应该是 'M051.*' 吧?(有个 .)

    2018-12-29
    有用
    回复
登录 后发表内容