Skip to content

Split string

ryannewington edited this page Jun 23, 2016 · 1 revision

Split string

Summary

This transform allows you to split a string based on a regular expression pattern.

Parameters

Parameter Description
Regular expression split pattern A valid regex pattern to match on

Input Type

The transform supports string values

Multiple input values

The transform accepts multiple input values, and processes each of them individually

Return Type

The transform returns a string value for each split match

Usage

Regular Expression

,

Input Value

Value1,Value2

Output results

Value1
Value2