Learn R Programming

lzstring (version 0.1.3)

decompressFromBase64: 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)

Value

A character string representing the decompressed input string.

Arguments

string

A character string in Base64 format to be decompressed.

Examples

Run this code
x <- compressToBase64("Hello, world!")
decompressFromBase64(x)

Run the code above in your browser using DataLab