Convert std::string to FString

You should be able to do it with something like:

UTF8_TO_TCHAR(str.c_str())

There are three other important conversion functions available in StringConv.h

Be aware that this conversion is “short lived” and it is suggested that they only be used as function parameters.

1 Like