decompressFromBase64: Decompress a string from Base64

View source: R/lzstringr-package.R

decompressFromBase64R 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)

lzstring documentation built on Oct. 22, 2024, 1:06 a.m.