FString fStr = "this fString";
//FString to std::string
std::string cstr(TCHAR_TO_UTF8(*fStr));
//std::string to FString
ClientMessage(FString(cstr.c_str()));
FString fStr = "this fString";
//FString to std::string
std::string cstr(TCHAR_TO_UTF8(*fStr));
//std::string to FString
ClientMessage(FString(cstr.c_str()));