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 |
Example
compression.gzipUncompress("GZipCompressedString")
The output is an uncompressed string in a readable format.