Page:
Nodes/String/Split
Pages
Guides/QuickStart
Home
Nodes/BaseImageNode
Nodes/Image/Desaturate
Nodes/Image/GetDimensions
Nodes/Image/Invert
Nodes/Image/InvertChannel
Nodes/Image/RGBACombine
Nodes/Image/RGBASplit
Nodes/Image/Texture2DImport
Nodes/Image/Texture2DOutput
Nodes/Image/VariableNode
Nodes/Image/ViewImageNode
Nodes/Images/FromPathNode
Nodes/Images/SingleChannelColor
Nodes/String/Append
Nodes/String/Replace
Nodes/String/Split
Nodes/Utils/GenericConnection
quick-start
Clone
1
Nodes/String/Split
Chromum edited this page 2025-05-09 09:59:54 +00:00
Table of Contents
String Split
🔌 INPUT PORTS
Name | Type | Description |
---|---|---|
Source String |
System.String |
The original string to split. |
Delimiter |
System.String |
The delimiter used to split the string. Only the first occurrence is used. |
📤 EXPORT PORTS
Name | Type | Description |
---|---|---|
Before Delimiter |
System.String |
The portion of the string before the first occurrence of the delimiter. |
After Delimiter |
System.String |
The portion of the string after the first occurrence of the delimiter. |
📝 DESCRIPTION
The String Split node splits a string into exactly two parts using the first occurrence of a specified delimiter.
This is useful for parsing commands, filenames, key-value strings, or any text with a predictable divider.
This node is derived from BaseImageNode
.
⚠️ KNOWN ISSUES
- If the delimiter is not found, the full source string is returned in
Before Delimiter
andAfter Delimiter
is empty. - If the delimiter is null or empty, no split occurs.