Decompress a string from Encoded URI Component
Source:R/lzstringr-package.R
decompressFromEncodedURIComponent.Rd
This function takes a compressed string in Encoded URI Component format as input and returns the decompressed version of the string.
Examples
x <- compressToEncodedURIComponent("Hello, world!")
decompressFromEncodedURIComponent(x)
#> [1] "Hello, world!"