作者:mobiledu2502928897 | 来源:互联网 | 2023-05-18 09:02
我尝试从网站上提取一些信息
library(rvest)
library(XML)
url <- "http://wiadomosci.onet.pl/wybory-prezydenckie/xcnpc"
html <- html(url)
nodes <- html_nodes(html, ".listItemSolr")
nodes
我得到30个HTML代码的"列表".我希望从"list"提取最后一个href属性的每个元素,所以对于30.元素它将是
所以我想得到字符串
"http://wiadomosci.onet.pl/kraj/w-sobote-prezentacja-hasla-i-programu-wyborczego-komorowskiego/tvgcq"
问题是html_attr(nodes, "href")
行不通(我得到NA的矢量).所以我想到了正则表达式,但问题nodes
是不是字符列表.
class(nodes)
[1] "XMLNodeSet"
我试过了
xmlToList(nodes)
但它也不起作用.
所以我的问题是:如何使用为HTML创建的某个函数提取此URL?或者,如果不可能,我如何将XMLNodeSet转换为字符列表?
1> bergant..:
尝试在节点的子节点内搜索:
nodes <- html_nodes(html, ".listItemSolr")
sapply(html_children(nodes), function(x){
html_attr( x$a, "href")
})
更新
哈德利建议使用优雅的管道:
html %>%
html_nodes(".listItemSolr") %>%
html_nodes(xpath = "./a") %>%
html_attr("href")