Split String Action
Split String Action divides a string into multiple substrings based on a delimiter and returns the results as a list. It is commonly used for parsing CSV data, extracting parts of formatted text, or breaking down complex strings.
Appearance
In Talos, Split String Action appears as a rectangular node with a split icon, indicating string division. It takes a string input and outputs a list of substrings.
Properties
As all Actions, Split String Action has a few unique properties that are essential for it's functionality.
Common properties
Common properties inherited from Action.
Display NameString
This is the display name of the action.
By customizing this property, you can differentiate between same type of actions.
Action IDString
Indicates the unique ID of this action.
This property is Read only and it is not customizable
DisabledBoolean
If set to true, this action is considered disabled and will not be executed.
InputString
The string to split.
DelimiterString
The character or string to split on.
OutputString
The variable to store the resulting list.