网页抓取(R 语言?)
我想获取 this 中间列中的公司名称 页面(以蓝色粗体书写),以及登记投诉者的位置指示符(例如“印度,德里”,以绿色书写)。基本上,我想要一个包含两列的表格(或数据框),一列用于公司,另一列用于位置。有什么想法吗?
I want to get the names of the companies in the middle column of this page (written in bold in blue), as well as the location indicator of the person who is registering the complaint (e.g. "India, Delhi", written in green). Basically, I want a table (or data frame) with two columns, one for company, and the other for location. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
R
中的XML
包轻松完成此操作。这是代码You can easily do this using the
XML
package inR
. Here is the code这是为了匹配蓝色粗体的标题,技巧是打开页面的源代码并查看您要查找的内容之前和之后的内容,然后使用正则表达式。
您可以检查此。
This to match titles in blue bold, the trick is to open the source code of page and look what is before and after what are you looking for, then you use regex.
You may check this.