Nothing
#' @rdname curl_options
#' @export
curl_symbols <- function(filter = ""){
m <- grep(filter, curl_symbol_data$name, ignore.case = TRUE)
curl_symbol_data[m,]
}
#' @useDynLib curl R_curl_version
#' @export
#' @rdname curl_options
#' @examples
#' # Curl/ssl version info
#' curl_version()
curl_version <- function(){
.Call(R_curl_version);
}
#' Parse date/time
#'
#' Can be used to parse dates appearing in http response headers such
#' as \code{Expires} or \code{Last-Modified}. Automatically recognizes
#' most common formats. If the format is known, \code{\link{strptime}}
#' might be easier.
#'
#' @param datestring a string consisting of a timestamp
#' @useDynLib curl R_curl_getdate
#' @export
#' @examples
#' # Parse dates in many formats
#' parse_date("Sunday, 06-Nov-94 08:49:37 GMT")
#' parse_date("06 Nov 1994 08:49:37")
#' parse_date("20040911 +0200")
parse_date <- function(datestring){
out <- .Call(R_curl_getdate, datestring);
class(out) <- c("POSIXct", "POSIXt")
out
}
#' @useDynLib curl R_split_string
split_string <- function(x, split = ":"){
.Call(R_split_string, x, split)
}
trimws <- function(x) {
sub("\\s+$", "", sub("^\\s+", "", x))
}
is_string <- function(x){
is.character(x) && length(x)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.