使用 Casbah 通过正则表达式查找
如何在 Collection#find(/* HERE */)
中使用正则表达式,例如:
val coll = MongoConnection()("foo")("bar")
for(x <- coll.find("name" -> ".*son$".r)) {
// some operations...
}
how to use regular expressions at Collection#find(/* HERE */)
like:
val coll = MongoConnection()("foo")("bar")
for(x <- coll.find("name" -> ".*son$".r)) {
// some operations...
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您已经很接近了,您只需将条件包装在
MongoDBObject()
中。我们必须去掉
的隐式转换。 ->
在很多地方,因为它们很难正确捕获并且破坏了其他代码。他们可能会在 2.1 中回归。
改为这样做:
You are close, you just need to wrap your conditions in a
MongoDBObject()
.We had to pull out the implicit conversions of
<key> -> <value>
in a bunch of places because they were hard to catch properly and were breaking other code.They'll probably be back in 2.1.
Do this instead:
对于添加 IGNORECASE ,上述答案在 Scala、Casbah 的正则表达式末尾附加“/i”将不起作用。
为此目的,请使用:
For adding IGNORECASE above answer will not work by appending "/i" at the end of regex in Scala, Casbah.
For this purpose use: