Description Usage Arguments Details Value Author(s) Examples
This function remove a given set of parameters from a specific URL
1 | Linkparamsfilter(URL, params, removeAllparams = FALSE)
|
URL |
character, the URL from which params and values have to be removed |
params |
character vector, List of url parameters to be removed |
removeAllparams, |
boolean if true , all url parameters will be removed. |
This function exclude given parameters from the urls,
return a URL wihtout given parameters
salim khalil
1 2 3 4 5 | #remove ord and tmp parameters from the URL
url<-"http://www.glogile.com/index.php?name=jake&age=23&tmp=2&ord=1"
url<-Linkparamsfilter(url,c("ord","tmp"))
#remove all URL parameters
Linkparamsfilter(url,removeAllparams = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.