Base64Encode: Difference between revisions
From Onset Developer Wiki
No edit summary |
FlyingFork (talk | contribs) No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 9: | Line 9: | ||
{{FuncReturnValue|}} | {{FuncReturnValue|}} | ||
The base64 string | |||
== Example == | == Example == | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local encoded = Base64Encode("Placeholder") | |||
</syntaxhighlight> | </syntaxhighlight> | ||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
* [[Base64Decode]] | * [[Base64Decode]] |
Latest revision as of 15:58, 2 August 2021
Description
Encodes the specified text in the Base64 format.
Syntax
Base64Encode(text)
Parameters
- text
the text.
Return Value
The base64 string
Example
local encoded = Base64Encode("Placeholder")