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| | {{FuncDescription|Decodes the Base64 into text.}} | ||
{{FuncSyntax|Base64Decode(base64)}} | {{FuncSyntax|Base64Decode(base64)}} | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|base64| | {{FuncParam|base64|The base64 text.}} | ||
{{FuncReturnValue| | {{FuncReturnValue|Text string.}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="lua"> | |||
-- code | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
* [[Base64Encode]] |
Revision as of 13:56, 16 November 2019
Description
Decodes the Base64 into text.
Syntax
Base64Decode(base64)
Parameters
- base64
The base64 text.
Return Value
- Text string.
Example
-- code