encode Base64(a, b)
Group |
Encodes a text a using the Base64 encoding. First, the text is converted into a byte sequence using encoding b and then encoded using the Base64 encoding.
Description of Parameters
Parameter |
Description |
a |
Text to be encoded. |
b |
(optional) Character encoding to be used for reading in text a. Default: 8859_1. Note: Use the three dots to select a value. |
Examples
Parameter a |
Parameter b |
Result |
Täxt |
|
VOR4dA== |
Täxt |
ASCII |
VD94dA== |
Täxt |
Dummycharset |
Function stops with an error. |