Integer to string

Type conversion Pure
Integer to string
Value 0
Result

Description

Pure function converting an integer to its string representation.

When to use

Use Integer to string whenever you need to embed an integer value in a text context — for example, before passing it to Log message, Concatenate strings, or Send email. Because Log message and most string nodes expect a string input, this conversion is often the last step in an arithmetic chain before the value is displayed or transmitted.

Pins

Input pins

Pin Type Default Notes
Value integer 0 The integer to convert. Negative values produce a string with a leading minus sign.

Output pins

Pin Type Notes
Result string The decimal string representation of the integer (e.g. 42 becomes "42").

Example

Log the total number of items processed in a loop. Wire the Result output of Array length into the Value input of Integer to string, then pass the Result output into the Text 2 input of Concatenate strings (Text 1 set to "Items: "). Feed the combined Result output into the Message input of Log message to write the count to the execution log.

See also