base64.decode

From RPTools Wiki
Revision as of 23:36, 9 February 2023 by Conversion script (talk | contribs) (Conversion script moved page Base64.decode to base64.decode: Converting page titles to lowercase)
Jump to navigation Jump to search

base64.decode() Function

Introduced in version 1.5.2
Accepts a Base64 encoded string and decodes it to plain text.

Usage

base64.decode(string)

Parameters

  • string - The base64 encoded string to be decoded.

Example

Encode a string and then decode it.
[r: txt = "Four score and seven years ago..."]<br>
[r: encTxt = base64.encode(txt)]<br>
[r: base64.decode(encTxt)]<br>

Returns:

Four score and seven years ago... 
Rm91ciBzY29yZSBhbmQgc2V2ZW4geWVhcnMgYWdvLi4u 
Four score and seven years ago...

See Also