Lucene.net 搜索和下划线

发布于 2024-09-14 01:27:31 字数 334 浏览 2 评论 0原文

下划线“_”的作用类似于 AND,不是吗?

当搜索任何一个时,

test_12 , 12_test , 12 AND test , test AND 12

我都会得到同样的结果。

但为什么通配符会出现问题呢?

mytest* AND abc_IN_CRM_C  --> finds results!
abc_IN_CRM_C_mytest* --> no results!
abc_IN_CRM_C AND mytest* --> results ?!

我做错了什么?

The Underscore '_' works like an AND, doesn't it?

When searching for any of

test_12 , 12_test , 12 AND test , test AND 12

I get the same hit.

But why is there a problem with the wildcard?

mytest* AND abc_IN_CRM_C  --> finds results!
abc_IN_CRM_C_mytest* --> no results!
abc_IN_CRM_C AND mytest* --> results ?!

What am I doing wrong?

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

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

发布评论

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

评论(1

兲鉂ぱ嘚淚 2024-09-21 01:27:31

如果您使用的是 StandardAnalyzer,则文本将按下划线分割。这就是为什么您会得到与使用“AND”相同的结果。

另请参阅 Lucene 搜索和下划线

If you are using the StandardAnalyzer, then the text is split on underscores. That's why you get the same results as using "AND".

Also see Lucene search and underscores

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文