decode Base64(a, b)
|
Group |
Decodes a Base64-encoded text. First, the text a is converted to a byte stream using Base64 then a text will be created out of it using the charset b.
Description of Parameters
|
Parameter |
Description |
|
a |
Base64-coded value to be decoded. |
|
b |
(optional) Charset to be used. Default: 8859_1 |
Examples
|
Parameter a |
Parameter b |
Result |
|
VOR4dA== |
Täxt |
|
|
VOR4dA== |
ASCII |
T?xt |
|
VOR4dA== |
Dummycharset |
Function stops with an error message. |