Skip to main content

Overview

The split transformation splits a string into an array based on a separator.

Syntax

split(<variable>, separator="")

Parameters

ParameterTypeRequiredDescription
variablestringYesThe string to split
separatorstringYesThe separator character or string

Examples

split(<variable>, separator=",")
split(<variable>, separator=" ")