urltools (version 1.5.0)

path: Get or set a URL's path

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

path(x)
path(x) <- value

Arguments

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

See Also

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

Examples

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

#Set a component
path(example_url) <- "bin/windows/"

Run the code above in your browser using DataCamp Workspace