Skip to main content
Version: v1.13 print this page

FieldSplitter

This node splits the string of the specified input column using the specified delimiter

Input

It accepts a DataFrame as input from the previous Node

Output

New columns are added to the incoming DataFrame with values from the result of splitting the value in the input column

Type

transform

Fields

NameTitleDescription
inputColInput Columninput column name
outputColsOutput Columnsnew column names separated by comma','.(eg: col1,co2,col3)
sepSeparatorseparator to split the input column value(default: space)
onErrorOn Error

Examples

Input

date_of_paymenttotal_amount
StringTypeDoubleType
12/17/2013113.48
12/4/2013119.49
12/16/201312.01
10/22/201310.61

Parameters

NameValue
Input Columndate_of_payment
Separator/
Output Columnsmonth,date,year

Output

date_of_paymenttotal_amountmonthdateyear
StringTypeDoubleTypeStringTypeStringTypeStringType
12/17/2013113.4812172013
12/4/2013119.491242013
12/16/201312.0112162013
10/22/201310.6110222013