UncompressString()

Syntax

Result$ = UncompressString(String$)
Description
Uncompress the specified buffer and returns the uncompressed string.

Parameters

String$ The string to uncompress.

Return value

Return the uncompressed string if it success, empty string otherwise.

Example

  String$ = "Test "+Space(1000)+"End"
  *Compressed = CompressString(String$)
  Debug "Compressed size (from " + Len(String$) + " bytes): "+MemorySize(*Compressed)

  Debug "Uncompressed string: " + UncompressString(*Compressed)

See Also

UncompressString()

Supported OS

All

<- UncompressMemory() - Packer Index