I have a csv where one of the columns can sometimes come as a pair such as:
Column_name |
1 , 2 |
2.5 3.2 |
2.9 - 3.2 |
The delimiter can potentially be anything really, but there will be a delimiter. Also the values will only come as pairs.
My question is, is there an efficient way to separate this one column into a flowfile where each value has it's own column, such that I have the following result:
Column #1 | Column #2 |
1 | 2 |
2.5 | 3.2 |
Thank you