gpt4 book ai didi

scala - 使用 Casbah 通过正则表达式查找

转载 作者:IT老高 更新时间:2023-10-28 13:18:55 25 4
gpt4 key购买 nike

如何在 Collection#find(/* HERE */) 使用正则表达式,例如:

val coll = MongoConnection()("foo")("bar")
for(x <- coll.find("name" -> ".*son$".r)) {
// some operations...
}

最佳答案

您已经接近了,您只需将条件包含在 MongoDBObject() 中.

我们不得不提取 <key> -> <value> 的隐式转换在很多地方,因为它们很难被正确捕获并且正在破坏其他代码。

他们可能会在 2.1 中回归。

改为这样做:

val coll = MongoConnection()("foo")("bar")
for(x <- coll.find(MongoDBObject("name" -> ".*son$".r))) {
// some operations...
}

关于scala - 使用 Casbah 通过正则表达式查找,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4887838/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com