rvest how to select a specific css node by id

后端 未结 3 1925
长情又很酷
长情又很酷 2021-02-07 11:36

I\'m trying to use the rvest package to scrape data from a web page. In a simple format, the html code looks like this:

3条回答
  •  失恋的感觉
    2021-02-07 12:21

    Adding an answer bc I don't see the easy css selector shorthand for selecting by id: using #your_id_name:

    h %>% 
      html_node('#a') %>%
      html_attr('value')
    

    which outputs "123" as desired.

    Same setup as the others:

    require(rvest)
    text <- '
    ' h <- read_html(text)

提交回复
热议问题