如何从这些节点获取链接:
script <- getURL("www.r-bloggers.com")
doc <- htmlParse(script)
li <- getNodeSet(doc, "//ul[@class='xoxo blogroll']")
提前感谢任何提示。
您可以提取a
元素并调用xmlGetAttr
它们。
library(RCurl)
library(XML)
script <- getURL("www.r-bloggers.com")
doc <- htmlParse(script)
li <- getNodeSet(doc, "//ul[@class='xoxo blogroll']//a")
sapply(li, xmlGetAttr, "href")
也可以xpathApply
直接使用:
xpathSApply(doc,
"//ul[@class='xoxo blogroll']//a",
xmlGetAttr, "href"
)