如何从“搜索查询”中提取关键字?
我需要提取搜索查询的关键字。例如,假设搜索“最新流行的诺基亚手机”。我想提取这个短语的关键词。有没有用 Java 编写的库来完成这个任务?
I need to extract the keywords of a search query. For example, suppose one searches for "latest popular Nokia phones". I want to extract the keywords of this phrase. Are there any libraries written in Java to get this done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK Apache Lucene 正在做这样的事情(删除诸如 a、an、the 等等)。它还提供基于 Java 的索引和搜索实现,以及拼写检查、命中突出显示和高级分析/标记化功能等等。
AFAIK the Apache Lucene is doing such a thing (removing words like a, an, the and so one). It provides also a Java-based indexing and search implementation, as well as spellchecking, hit highlighting and advanced analysis/tokenization capabilities and much more.