Stringify
Last updated
Last updated
Converts any value type into a text string representation. This is useful for displaying non-text values or combining different data types into text format.
value
The value to convert to text
Any
Yes
value
The string representation of the input
String
Drag the Stringify node into your graph.
Connect any value (number, boolean, object, etc.) to the "value" input.
The node will convert the input to its string representation.
This node performs a simple conversion to string (equivalent to adding an empty string to a value).
For more complex object serialization, consider using other tools to format the data.
Display Formatting: Convert numeric design tokens to string format for display.
Data Combination: Convert values to strings before concatenating them with other text.
Type Conversion: Ensure values are in string format before passing to string-only operations.
: For embedding values into a template string.
: For combining multiple strings into one.