| url_parse {httr2} | R Documentation |
url_parse() parses a URL into its component pieces; url_build() does
the reverse, converting a list of pieces into a string URL. See
rfc3986 for details of parsing
algorithm.
url_parse(url)
url_build(url)
url |
For |
url_build() returns a string.
url_parse() returns a URL: a S3 list with class httr2_url
and elements scheme, hostname, port, path, fragment, query,
username, password.
url_parse("http://google.com/")
url_parse("http://google.com:80/")
url_parse("http://google.com:80/?a=1&b=2")
url_parse("http://username@google.com:80/path;test?a=1&b=2#40")
url <- url_parse("http://google.com/")
url$port <- 80
url$hostname <- "example.com"
url$query <- list(a = 1, b = 2, c = 3)
url_build(url)