如果我要把下面这个文档搜索出来
{ “_id” : ObjectId(“5a30e4b53bd6e79f91c6d090”), “f1” : “mys\\” }
为什么要用四个\\\\ ?
pradb>db.newtab.find({f1:{$regex:”mys\\\”}})
2017-12-14T08:36:59.690+0800 E QUERY [thread1] SyntaxError: unterminated string literal @(shell):1:27
pradb>db.newtab.find({f1:{$regex:”mys\\\\”}})
{ “_id” : ObjectId(“5a30e4b53bd6e79f91c6d090”), “f1” : “mys\\” }