Questions tagged «match»

一种基于某种搜索来查找结果的编程概念。通常在谈论正则表达式时使用。

5
Mongo中不区分大小写的搜索
我在Mongo中使用不区分大小写的搜索,类似于https://stackoverflow.com/q/5500823/1028488。 即我正在使用带有选项i的正则表达式。但是我在将正则表达式限制为该单词时遇到了麻烦,它的执行效果更像SQL中的“ Like” 例如:如果我使用类似的查询 {"SearchWord" : { '$regex' : 'win', $options: '-i' }},它将向我显示胜利,窗户和冬季的结果。我如何将其限制为jsut show win? 我尝试过,/^win$/但是说无效的杰森...。请提出一种方法。 提前致谢
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.