parse_query | R Documentation |
Parse http parameters from a query string. This includes unescaping of url-encoded values.
parse_query(query)
query |
a url-encoded query string |
For http GET requests, the query string is specified
in the URL after the question mark. For http POST or PUT requests, the query
string can be used in the request body when the Content-Type
header
is set to application/x-www-form-urlencoded
.
q <- "foo=1%2B1%3D2&bar=yin%26yang"
parse_query(q)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.