# Number to string

Process

Converts a numeric value to its string representation.

Number to string
V
T

# Inputs

IDAbbrevNameTypeDefaultDescription
valueVValueNUMBER0Numeric value to convert to string.

# Outputs

IDAbbrevNameTypeDefaultDescription
textTTextSTRINGThe numeric value formatted as a string.

# Source Code

View Volang source
output::set("text", str::fmt("{}", input::get("value")))
Converts a numeric value to its string representation.