urltools (version 1.3.2)

scheme: Get or set a URL's scheme

Description

as in the lubridate package, individual components of a URL can be both extracted or set using the relevant function call - see the examples.

Usage

scheme(x)

scheme(x) <- value

Arguments

x
a URL, or vector of URLs
value
a replacement value for x's scheme.

See Also

domain, port, path, parameters and fragment for other accessors.

Examples

Run this code
#Get a component
example_url <- "http://cran.r-project.org/submit.html"
scheme(example_url)

#Set a component
scheme(example_url) <- "https"

Run the code above in your browser using DataCamp Workspace