FUNCTION String ( Source AS String ) AS StringThis function returns an uncompressed string from a compressed string using the algorithm defined by Type property.
DIM Cz AS NEW Uncompress DIM Buf AS String Cz.Type = "bzlib2" Buf = Cz.String(SourceString) PRINT Buf