解析 Bing 新闻搜索 API 结果

发布于 2024-10-31 19:29:49 字数 239 浏览 0 评论 0原文

嘿,我正在尝试使用正则表达式解析 Bing News API 搜索结果,但发现它真的很难。任何人都可以告诉如何从一个响应中返回的所有结果中提取 - 1. 片段、2. URL 和 3. 名称(10 是默认数字)?

这是我从 Bing 收到的查询响应。(其中返回了 5 个结果)

http://ideone。 com/yd8yl

Hey i am trying to parse Bing News API Search results, using Regex but finding it real hard. Can any one tell how to extract - 1. Snippet, 2. URL and 3. Name from all the results(10 is the default number) that are returned in one response ?

This is the response that i am receiving from Bing for a query.(there are 5 results returned in this)

http://ideone.com/yd8yl

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

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

发布评论

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

评论(1

哭泣的笑容 2024-11-07 19:29:49

您不需要使用正则表达式来解析 Bing 响应。响应采用 JSON(JavaScript 对象表示法)格式,根据您的编程环境,您可以使用适当的库来解析它。如果您不熟悉 JSON 是什么,请查看 http://www.json.org/

You don't need to use a regular expression for parsing the Bing response. The response is in JSON (JavaScript Object Notation) format, and depending on your programming environment, you may use an appropriate library to parse it. Please check http://www.json.org/ if you are not familiar with what JSON is.

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