Examples for 'xml2::url_escape'


Escape and unescape urls.

Aliases: url_escape url_unescape

Keywords:

### ** Examples

url_escape("a b c")
[1] "a%20b%20c"
url_escape("a b c", "")
[1] "a%20b%20c"
url_unescape("a%20b%2fc")
[1] "a b/c"
url_unescape("%C2%B5")
[1] "ยต"

[Package xml2 version 1.3.3 Index]