compression.gzipUncompress

This function takes a GZip compressed string as input and returns a decompressed string using the GZip decompression algorithm.

Syntax

compression.gzipUncompress (compressed Str)

Arguments

Argument

Type

Description

compressed Str

string

Compressed string that should be decompressed.

Returns

Type

Description

string

Decompressed string.

Examples

compression.gzipUncompress("GZipCompressedString")

The output is an uncompressed string in a readable format.