Skip to main content
The String Split command (Command Type: 1015) splits a string field in each child object using a specified delimiter, replacing the field value with the resulting array.

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: 1015

Parameters

ParameterTypeDescriptionRequired
keystringSpecifies the property in the objects containing the string to splitYes
splitstringThe delimiter or substring used to split the stringYes

Usage Examples

Split Comma-Separated Tags

{
  "command": "string-split",
  "params": {
    "key": "tags",
    "split": ","
  }
}

Split Pipe-Delimited IDs

{
  "command": "string-split",
  "params": {
    "key": "ids",
    "split": "|"
  }
}

Split on Whitespace

{
  "command": "string-split",
  "params": {
    "key": "words",
    "split": " "
  }
}

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