decode Base64(a, b)
Group |
Decodes a Base64 encoded text. The text a is first converted into a byte sequence according to the Base64 method and then into the result text with the character encoding specified in b.
Description of Parameters
Parameter |
Description |
a |
Base64-coded text to be decoded. |
b |
(optional) Character encoding to be used for result text. Default: 8859_1. Note: Use the three dots to select a value. |
Examples
Parameter a |
Parameter b |
Result |
VOR4dA== |
|
Täxt |
VOR4dA== |
ASCII |
T?xt |
VOR4dA== |
Dummycharset |
Function stops with an error message. |