如何删除 lucene.net 中的连字符标记

发布于 2024-11-05 13:49:54 字数 67 浏览 0 评论 0原文

我在搜索时遇到连字符问题。我认为这是因为我使用的标准分析器。

如何删除该连字符作为标准分析器标记的一部分?

I'm having problem with hyphen when searching. I thinks its because of the Standard Analyzer that I use.

How can I remove that hypen as part of the standard analyzer tokens?

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

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

发布评论

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

评论(2

如梦亦如幻 2024-11-12 13:49:54

StandardAnalyzer 确实用连字符分解单词。您正在对什么类型的数据建立索引?你能把分析仪换成其他的吗? KeywordAnalyzer 根本不会分解单词,而 WhitespaceAnalyzer 只会在空白字符(空格、换行符、制表符等)上分解。

您可以使用 PerFieldAnalyzerWrapper 如果您需要在文档/查询中使用多个分析器。

The StandardAnalyzer does indeed break up words with hyphens. What type of data are you indexing? Can you change the analyzer to something else? The KeywordAnalyzer wont break up words at all, and the WhitespaceAnalyzer will only break on whitespace characters (spaces, newlines, tabs, ...)

You can use the PerFieldAnalyzerWrapper if you need to use several analyzers within a document/query.

墨落成白 2024-11-12 13:49:54

自定义分词器将符合您的标准。
请参考,http://karticles.com/NoSql/lucene_custom_tokenizer.html

Custom Tokenizer would fit your criteria.
Please refer, http://karticles.com/NoSql/lucene_custom_tokenizer.html

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