Split
Last updated
Last updated
Split transform plugin
Split a field to more than one field.
separator
string
yes
split_field
string
yes
output_fields
array
yes
The list of fields that need to be kept. Fields not in the list will be deleted
The field to be split
The result fields after split
Transform plugin common parameters, please refer to for details
The data read from source is a table like this:
Joy Ding
20
123
May Ding
20
123
Kin Dom
20
123
Joy Dom
20
123
We want split name
field to first_name
and second name
, we can add Split
transform like this
Then the data in result table fake1
will like this
Joy Ding
20
123
Joy
Ding
May Ding
20
123
May
Ding
Kin Dom
20
123
Kin
Dom
Joy Dom
20
123
Joy
Dom