urltools (version 1.5.1)

fragment: Get or set a URL's fragment

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

fragment(x)
fragment(x) <- value

Arguments

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

See Also

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

Examples

Run this code
#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"

Run the code above in your browser using DataCamp Workspace