Navigation
Unreal Engine C++ API Reference > Runtime > Engine > Kismet > UKismetStringLibrary
Deprecated * This method has been deprecated and will be removed. Please use FString::Printf instead.
References
Module | Engine |
Header | /Engine/Source/Runtime/Engine/Classes/Kismet/KismetStringLibrary.h |
Include | #include "Kismet/KismetStringLibrary.h" |
Source | /Engine/Source/Runtime/Engine/Private/KismetStringLibrary.cpp |
static FString BuildString_Float
&40;
const FString & AppendTo,
const FString & Prefix,
float InFloat,
const FString & Suffix
&41;
Remarks
Converts a float->string, create a new string in the form AppendTo+Prefix+InFloat+Suffix A new string built from the passed parameters
Parameters
Name | Description |
---|---|
AppendTo | An existing string to use as the start of the conversion string |
Prefix | A string to use as a prefix, after the AppendTo string |
InFloat | The float value to convert |
Suffix | A suffix to append to the end of the conversion string |