Decimal to string
Type conversion
Pure
Decimal to string
Value
0
Result
Description
Pure function converting a decimal to its plain string representation, without scientific notation (e.g. 0.0000001 becomes "0.0000001").
When to use
Use Decimal to string whenever you need to embed a decimal value in a text context — building a log message, composing an HTTP body, or concatenating it into a larger string. The output is always plain decimal notation, so very small or very large values never surprise you with scientific notation the way a generic value stringified elsewhere might.
Pins
Input pins
| Pin | Type | Default | Notes |
|---|---|---|---|
| Value | decimal | 0 | The decimal to convert. |
Output pins
| Pin | Type | Notes |
|---|---|---|
| Result | string | The plain-decimal string (never scientific notation). Trailing zeros are preserved, so 2.50 becomes "2.50". |
Example
Log a computed price. Wire the decimal Result of a Multiply node into the Value input of Decimal to string, then feed its Result into Concatenate strings after a "Total: " prefix, and pass the combined text into the Message input of Log message.