Split Operation:

The operation divides the values of a target column into two values compiling two separate columns.

The split can be performed:

* by Char Sequence:
i.e. the target value is divided by the first occurrence of a specific character or sequence of characters

for instance, if the target value is "Fis-12345” and the split string is “-“ then the operation produces “Fis” and "-12345”

* by Index
i.e. the target value is divided by the n-th character

for instance, if the target value is "Fis-12345” and the index string is “2“ then the operation produces “F” and “is-12345”;

* by Regex
i.e. the target value is divided by the first occurrence of the given Regex

Merge Operation:

The operation combines the values of two target columns into a single value compiling a new column. The values are managed as strings and the new value is produce by appending the second value to the first. It is possible to specify a separator string.

For instance, if the values to be merged are “Fis” and “12345” and the separator is “-“, then the operation produces "Fis-12345”