decompressFromBase64 {lzstring} | R Documentation |
Decompress a string from Base64
Description
This function takes a compressed string in Base64 format as input and returns the decompressed version of the string.
Usage
decompressFromBase64(string)
Arguments
string |
A character string in Base64 format to be decompressed. |
Value
A character string representing the decompressed input string.
Examples
x <- compressToBase64("Hello, world!")
decompressFromBase64(x)
[Package lzstring version 0.1.2 Index]