Is there an Unreal C++ function to parse a byte array to an FString with specific encoding?
I am working on an Unreal Engine 5 project where I need to parse binary files. These files contain text encoded in Shift-JIS, as opposed to UTF-8 encoding. My goal is to convert a byte array from this binary file into an FString, but specifically interpreted using Shift-JIS encoding.
Is there an Unreal C++ function to parse a byte array to an FString with specific encoding?
I am working on an Unreal Engine 5 project where I need to parse binary files. These files contain text encoded in Shift-JIS, as opposed to UTF-8 encoding. My goal is to convert a byte array from this binary file into an FString, but specifically interpreted using Shift-JIS encoding.