使用连字符时如何避免否定?

发布于 2025-01-10 20:11:26 字数 334 浏览 0 评论 0原文

我有一个类似于以下内容的查询:

db.mycollection.find({
     $text: {
        $search: "my -city"
     }
})

如果我运行此查询,它将否定 city。但我想搜索确切的短语 my -city。我该怎么做?

要搜索的文本可以是 my-citymy - citymy-city。有没有一种方法可以指示 mongodb 不要使用否定作为默认行为,而只使用精确的字符串匹配?

I have a query that looks similar to:

db.mycollection.find({
     $text: {
        $search: "my -city"
     }
})

If I run this query, it will negate city. But I want to search for the exact phrase my -city. How can I do this?

The text to search could be my-city or my - city or my -city. Is there a way I can instruct mongodb to not use negation as the default behavior and just use the exact string matching?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情勿念 2025-01-17 20:11:26

尝试将其包裹在 \" ... \" 中,如下所示

db.mycollection.find({
     $text: {
        $search: "\"my -city\""
     }
})

Try wrapping it in \" ... \" like this

db.mycollection.find({
     $text: {
        $search: "\"my -city\""
     }
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文