RealDocs

UKismetStringLibrary::Conv_IntToString

function Engine Blueprint Since unknown
#include "Kismet/KismetStringLibrary.h"
Access: public Specifiers: staticBlueprintPureBlueprintAutocast

Description

Converts a 32-bit integer value to its string representation. Backs the 'To String (Integer)' Blueprint conversion node.

Caveats & Gotchas

  • For values that need thousands separators, leading zeros, or other display formatting, this produces a plain decimal string with no padding — use FString::Printf or Conv_IntToString combined with LeftPad if you need formatted output.
  • Because it's BlueprintAutocast, plugging an Integer pin into a String input auto-inserts this node — the conversion can be invisible in the graph, which sometimes surprises people debugging string formatting issues.

Signature

static FString Conv_IntToString(int32 InInt)

Parameters

Name Type Description Default
InInt int32 The integer value to convert.

Return Type

FString

Example

Convert an int to string C++
int32 Score = 4200;
FString ScoreText = UKismetStringLibrary::Conv_IntToString(Score);
// ScoreText == "4200"

Version History

Introduced in: unknown

Version Status Notes
5.6 stable

Feedback

Was this helpful?

Suggest an edit

Select a field above to begin editing.