parse_url | R Documentation |
See https://www.rfc-editor.org/rfc/rfc3986 for details of parsing algorithm.
parse_url(url)
build_url(url)
url |
For |
a list containing:
scheme
hostname
port
path
params
fragment
query, a list
username
password
parse_url("http://google.com/")
parse_url("http://google.com:80/")
parse_url("http://google.com:80/?a=1&b=2")
url <- parse_url("http://google.com/")
url$scheme <- "https"
url$query <- list(q = "hello")
build_url(url)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.