Split Operation:
The operation divides the values of a target column into two values compiling two separate columns.
The split can be performed:
for instance, if the target value is "Fis-12345” and the split string is “-“ then the operation produces “Fis” and "-12345”
for instance, if the target value is "Fis-12345” and the index string is “2“ then the operation produces “F” and “is-12345”;
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”