Javascript 动词检测
我有以下问题。我需要使用 JavaScript
在字符串中查找动词。 我想知道是否有类似 (JAWS) 的东西,即用于 Wordnet
但用于 JavaScript 的 Java API。
更具体地说,我正在寻找某种能够返回文本或网页中的动词列表的 RESTful Web 服务。
如果您知道一些有用的信息,请随时发布您的答案。
I've the following problem. I need to find verbs in a string using JavaScript
.
I would like to know, if there is something like (JAWS), the Java API for Wordnet
, but for JavaScript.
More specifically, i'm searching for some kind of RESTful webservice able to return the list of verbs in a text or webpage.
If you know something useful, please don't hesitate to post your answers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看自然语言处理 API。他们似乎有一个 API。甚至还有针对大量请求的服务(也有免费计划)。
它基于简单的 POST 请求并返回 JSON,因此在 JavaScript 中使用起来很容易。
Have a look at the Natural Language Processing APIs. They seem to have an API. There is even a service for larger amounts of requests (has a free plan as well).
It is based on simple POST requests and returns JSON, so it would be easy to use in JavaScript.