Home / comp / gb.compress / uncompress / string 
Uncompress.String (gb.compress)
Syntax
FUNCTION String ( Source AS String ) AS String
This function returns an uncompressed string from a compressed string using the algorithm defined by Type property.

Example
DIM Cz AS NEW Uncompress
DIM Buf AS String

Cz.Type = "bzlib2"

Buf = Cz.String(SourceString)
PRINT Buf