
Extract info about url path and parameters that follow ?
sign.
parse_url_path(url_path)
character with link url
list containing two objects:
path
query, a list
parse_url_path
allows parsing paramaters lists from url. See more in examples.
# NOT RUN {
parse_url_path("?a=1&b=foo")
parse_url_path("?a=1&b[1]=foo&b[2]=bar/#!/")
parse_url_path("?a=1&b[1]=foo&b[2]=bar/#!/other_page")
parse_url_path("www.foo.bar/#!/other_page")
parse_url_path("www.foo.bar?a=1&b[1]=foo&b[2]=bar/#!/other")
# }
Run the code above in your browser using DataLab