How can I Concatenate FText Together?

#Thank You Jamie!

Oooh wow! I read the whole Ftext class and looked at format and did not think that could mean Concatenate.

#Please Correct Text.h

Your comment to me should be in the code itself!

like so

/*These take a FText as the formatting string, 
*   which allows for localisation to re-order the arguments if required for 
*      -Jame Dale Who is Awesome
*/
static FText Format(const FText& Fmt,const FText& v1);
static FText Format(const FText& Fmt,const FText& v1,const FText& v2);
static FText Format(const FText& Fmt,const FText& v1,const FText& v2,const FText& v3);
static FText Format(const FText& Fmt,const FText& v1,const FText& v2,const FText& v3,const FText& v4);

#My Final Code

My final result:

//These take a FText as the formatting string, 
//		which allows for localisation to re-order the arguments if required for the current language. -Jamie
DayCount = FText::Format(NSLOCTEXT("Solus","Solus","Day "), FText::AsNumber(SaveDetails.DayCount));

Health = FText::Format(NSLOCTEXT("Solus","Solus","HP "), FText::AsNumber(SaveDetails.PlayerHealth));