用rvest匹配几个节点之一

时间:2019-01-02 21:38:22

标签: r rvest

我正在抓取一系列页面,这些页面在要抓取的数据使用<b><strong>之间交替。有没有一种方法可以使用html_nodes()来同时获得<b><strong>节点?我尝试使用c()列出两种节点类型,但这会引发错误。

library(tidyverse)
library(rvest)

"http://washingtonpost.com/weather/2019/01/01/dc-area-forecast-breezy-today-with-increased-sunshine-more-rain-come-this-week/" %>% 
  read_html() %>% 
  html_nodes(c("b", "strong"))

0 个答案:

没有答案