ue4 ftext to int

To convert an FString to an integer in Unreal Engine 4 using C++, you can follow these steps:

  1. Get the FText as FString using the ToString() method.
  2. Convert the FString to int using the FCString::Atoi() function.

Here's an example of how you can achieve this:

FText MyText = FText::FromString("123");
FString MyString = MyText.ToString();
int32 MyInt = FCString::Atoi(*MyString);

In this example, MyText is converted to a FString using ToString() and then the FString is converted to an int using FCString::Atoi().