RealDocs

UKismetStringLibrary::Conv_Int64ToString

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

Description

Converts a 64-bit integer value to its string representation. Backs the 'To String (Integer64)' Blueprint conversion node, used where Integer64 wraps values beyond int32 range.

Caveats & Gotchas

  • Blueprint's plain 'Integer' type is int32 — if you're working with an Integer64 variable and it gets implicitly narrowed to Integer somewhere upstream, you'll silently lose precision before this node ever runs.
  • There is no separate int64 parse-back node named to match; Conv_StringToInt64 is the counterpart, not Conv_StringToInt which only handles int32.

Signature

static FString Conv_Int64ToString(int64 InInt)

Parameters

Name Type Description Default
InInt int64 The 64-bit integer value to convert.

Return Type

FString

Example

Convert a 64-bit integer to string C++
int64 BigCount = 9223372036854775807;
FString CountText = UKismetStringLibrary::Conv_Int64ToString(BigCount);
// CountText == "9223372036854775807"

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.