Visual Script: String Nodes
String
String nodes provide operations for working with text data in visual scripts. These nodes allow you to manipulate, format, and combine string values.
Common string operations include:
- String formatting - Combine multiple values into formatted text using format strings
- Concatenation - Join strings together
- Comparison - Check string equality or perform comparisons
- Conversion - Convert other data types to strings for display or logging
String nodes are particularly useful when combined with logging nodes for debug output, creating UI text, formatting messages, or building dynamic content. Use format strings with placeholders like {0}, {1}, {2} to insert variable values into text templates.