Skip to contents

This function takes a compressed string in Encoded URI Component format as input and returns the decompressed version of the string.

Usage

decompressFromEncodedURIComponent(string)

Arguments

string

A character string in Encoded URI Component format to be decompressed.

Value

A character string representing the decompressed input string.

Examples

x <- compressToEncodedURIComponent("Hello, world!")
decompressFromEncodedURIComponent(x)
#> [1] "Hello, world!"