fragment: Get or set a URL's fragment

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
fragment(x)

fragment(x) <- value

Arguments

x

a URL, or vector of URLs

value

a replacement value (or vector of replacement values) for x's fragment. If NULL, the fragment will be removed entirely.

See Also

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

Examples

1
2
3
4
5
6
7
8
9
#Get a component
example_url <- "http://en.wikipedia.org/wiki/Aaron_Halfaker?debug=true#test"
fragment(example_url)

#Set a component
fragment(example_url) <- "production"

#Remove a component
fragment(example_url) <- NULL

Ironholds/urltools documentation built on Oct. 1, 2020, 2:03 p.m.