Displaying 1 result from an estimated 1 matches for "verifyhost".
2008 Oct 06
3
Extracting text from html code using the RCurl package.
...at i end up
with is the html code. Is there some option that i am missing in the
RCurl package? Or is there another way to achieve this? This is the
code i am using:
> library(RCurl)
> my.url <- 'https://stat.ethz.ch/mailman/listinfo/r-help'
> html.file <- getURI(my.url, ssl.verifyhost = FALSE, ssl.verifypeer = FALSE, followlocation = TRUE)
> print(html.file)
I thought perhaps the htmlTreeParse() function from the XML package
might help, but I just don't know what to do next with it:
> library(XML)
> htmlTreeParse(html.file)
Many thanks for any help you can provid...