parse_url
From httr v1.1.0
by Hadley Wickham
Parse and build urls according to RFC1808.
See
Usage
parse_url(url)build_url(url)
Arguments
- url
- a character vector (of length 1) to parse into components,
or for
build_url
a url to turn back into a string.
Value
- a list containing:
- scheme
- hostname
- port
- path
- params
- fragment
- query, a list
- username
- password
Examples
parse_url("http://google.com/")
parse_url("http://google.com:80/")
parse_url("http://google.com:80/?a=1&b=2")
build_url(parse_url("http://google.com/"))
Community examples
Looks like there are no examples yet.