How to convert Enum to FString in Unreal Engine
Implementation depends on what enum you use. If you want to use an Unreal Reflection System-friendly solution that uses UENUM, there is a ready-made function for this: // Header file // This is your enum UENUM() enum class EnumExample : uint8 { EnumValue1, EnumValue2 }; // Implementation file // This is how you get the string representation of the enumerator FString StringRepresentation = UEnum::GetValueAsString(EnumExample::EnumValue2); If you want to use a pure C++ solution, you should create a function to manually convert the enumerator....