Hi,
I am trying to convert a Base64 in string to byte arrays. Any ideas on how can I implement it in c++?
Thank you!!
Hi,
I am trying to convert a Base64 in string to byte arrays. Any ideas on how can I implement it in c++?
Thank you!!
Something like this maybe
const FString Data64 = Some data;
TArray<TCHAR> DataBytes = Data64.GetCharArray();
Thanks a lot for the reply!!! Saved my life!!