Concating strings and other things

What about



FName name = *requiredComponent->GetName();
FString base = name.ToString();
int32 index = someIndex;
base.append("_");
base.append(FString::FromInt(index));

FName newName = FName(*base);



4 Likes