Overview
The String Split command provides functionality for:- Splitting a string field into an array using a delimiter
- Applying the split to a specified field across all child objects
- Transforming delimited string values into iterable arrays
Command Type
Command Type ID: 1015Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| key | string | Specifies the property in the objects containing the string to split | Yes |
| split | string | The delimiter or substring used to split the string | Yes |
Usage Examples
Split Comma-Separated Tags
Split Pipe-Delimited IDs
Split on Whitespace
Common Use Cases
- Tag Parsing: Convert comma-separated tag strings into arrays
- ID Lists: Split delimited ID strings for downstream filtering or joining
- Token Splitting: Break formatted strings into parts for further processing
Related Commands
- Array Join - Join array values back into a string
- String Manipulation - Apply JS string methods to fields
- Regex - Pattern-based string operations