url_build {urlparse} | R Documentation |
Builds a URL string from its components.
Description
Builds a URL string from its components.
Usage
url_build(url_components)
Arguments
url_components |
A list containing the components of the URL: scheme, host, port, path, query, and fragment.
|
Value
A URL string constructed from the provided components
Examples
library(urlparse)
url_build(list(
scheme = "https",
user = "",
password = "",
host = "host.com",
port = 8000,
path = "/path",
query = "query",
fragment = "fragment"
))
[Package urlparse version 0.2.1 Index]