解析 Bing 新闻搜索 API 结果
嘿,我正在尝试使用正则表达式解析 Bing News API 搜索结果,但发现它真的很难。任何人都可以告诉如何从一个响应中返回的所有结果中提取 - 1. 片段、2. URL 和 3. 名称(10 是默认数字)?
这是我从 Bing 收到的查询响应。(其中返回了 5 个结果)
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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要使用正则表达式来解析 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.