Gunzip (String function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 5: Line 5:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%outString</th><td>The decompressed content of the method object <var class="term">string</var>.</td></tr>
<tr><th>%outString</th><td>The decompressed content of the method object, <var class="term">string</var>.</td></tr>
<tr><th>string</th>
<tr><th>string</th>
<td>A string which has been assigned the output of a <var>Gzip</var> invocation.</td></tr>
<td>A string which has been assigned the output of a <var>[[Gzip (String function)|Gzip]]</var> invocation.</td></tr>
</table>
</table>


Line 15: Line 15:
</ul>
</ul>


==Examples==
==See also==
==See also==
{{Template:String:Gunzip footer}}
{{Template:String:Gunzip footer}}

Revision as of 02:11, 24 February 2012

Decompress a longstring with GUNZIP (String class)

[Introduced in Sirius Mods 7.4]


Syntax

%outString = string:Gunzip Throws InvalidGZipData

Syntax terms

%outStringThe decompressed content of the method object, string.
string A string which has been assigned the output of a Gzip invocation.

Usage notes

  • The inverse of Gunzip is Gzip.

See also