Hello experts,
I need to decode a Base64 encoded String within an ABSL-script. I have checked already all built-in functions of BinaryObject/Binary and also the functions available in reuse library 'Binary' but was not able to find something which supports Base64 decoding.
Did I overlook anything obvious or is it as tricky as it seems to be?
Thank you in advance for any helpful hint.
Best regards,
Eugen
Request clarification before answering.
Here is how it works:
var base64EncodedString = "RXVnZW4gRG9qYW4="; // Base64-encoded value of String "Eugen Dojan"
var binary = Library::Binary.ParseFromBase64String( base64EncodedString );
var decodedString = binary.ToString();So in fact very simple because the ToString() function of Binary does an implict base64 decoding.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.