I have a column that contains CSV. For example,
1,2,3,4,5
2,4,1,3,5
4,1,2,3,5
The order of these numbers is important as it records a sequence. Unfortunately, my data includes a bunch of shorthand. The above data is recorded in my data as follows:
1-5
2,4,1,3,5
4,1-3,5
How do I write a...