Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/Kismet > API/Runtime/Engine/Kismet/UKismetStringLibrary
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 |
UFUNCTION (BlueprintPure, Meta=(DisplayName="Build String (Integer)"), Category="Utilities|String")
static FString BuildString_Int
(
const FString & AppendTo,
const FString & Prefix,
int32 InInt,
const FString & Suffix
)
Remarks
Converts a int->string, creating a new string in the form AppendTo+Prefix+InInt+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 |
| InInt | The int value to convert |
| Suffix | A suffix to append to the end of the conversion string |