Base64Decode: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
Line 1: Line 1:
{{Info|Function|Server & Client|1.0}}
{{Info|Function|Server & Client|1.0}}


{{FuncDescription|__EDIT_ME__}}
{{FuncDescription|Decodes the Base64 into text.}}


{{FuncSyntax|Base64Decode(base64)}}
{{FuncSyntax|Base64Decode(base64)}}


{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|base64|__EDIT_ME__}}
{{FuncParam|base64|The base64 text.}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|Text string.}}


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="lua">
-- code
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
* [[Base64Encode]]

Revision as of 13:56, 16 November 2019

Base64Decode

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Decodes the Base64 into text.

Syntax

Base64Decode(base64)

Parameters

  • base64
    The base64 text.

Return Value

  • Text string.

Example

-- code

See also