Skip to content

Instantly share code, notes, and snippets.

@chenpanliao
Last active August 19, 2019 11:32
Show Gist options
  • Save chenpanliao/307206a3d3f41b83af727a2a286f7c1b to your computer and use it in GitHub Desktop.
Save chenpanliao/307206a3d3f41b83af727a2a286f7c1b to your computer and use it in GitHub Desktop.
add timestamp
FBlikeNumber <-
function(url) {
require(magrittr)
require(rvest)
x <- read_html(url, encoding = "UTF-8") %>% as.character
re <- regexpr("[,0-9]+(?= 人說這讚)", x, perl = T)
substr(x, re, re + attr(re, "match.length")) %>%
gsub(",", "", .) %>%
as.integer
}
FBlikeNumber("https://www.facebook.com/DoctorKoWJ/")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment