domain: Get or set a URL's domain

Description Usage Arguments See Also Examples

View source: R/accessors.R

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

1
2
3
domain(x)

domain(x) <- value

Arguments

x

a URL, or vector of URLs

value

a replacement value (or vector of replacement values) for x's scheme.

See Also

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

Examples

1
2
3
4
5
6
#Get a component
example_url <- "http://cran.r-project.org/submit.html"
domain(example_url)

#Set a component
domain(example_url) <- "en.wikipedia.org"

Example output

[1] "cran.r-project.org"

urltools documentation built on May 1, 2019, 6:49 p.m.