R/lzstringr-package.R
decompressFromEncodedURIComponent.RdThis function takes a compressed string in Encoded URI Component format as input and returns the decompressed version of the string.
decompressFromEncodedURIComponent(string)A character string representing the decompressed input string.
x <- compressToEncodedURIComponent("Hello, world!")
decompressFromEncodedURIComponent(x)
#> [1] "Hello, world!"