Skip to content

Split Processor

Refael Mizrahi edited this page Jan 27, 2022 · 4 revisions

Split [split]

This processor will split a string field into an array of values. So if a string has multiple values separated by a common separator, it will then update the field to be an array field with those values.

  • field
  • separator

Example

{
  "steps": [{
    "split": {
      "config": {
        "field": "xFor",
        "separator": ","
      }
    }
  }]
}
Clone this wiki locally