Dokumentaro de Gambaso
Compilation & Installation
Components
gb
gb.crypt
gb.qt4
Documents
Indekso de Lingvo
Language Overviews
LeguMin
Lexicon
Registro

Uncompress.String (gb.compress)

Function String ( Source As String ) As String

This function returns an uncompressed string from a compressed string using the algorithm defined by Type property.

  • Source: string to be uncompressed. Must be a valid compressed string.

Examples

DIM Cz AS NEW Uncompress
DIM Buf AS String

Cz.Type = "bzlib2"

Buf = Cz.String(SourceString)
PRINT Buf