Looking to get some insight as I'm lost on this one. I'd like to move lines based on the ending of previous one. It's a large CSV file that has a comment column that exported in line breaks from the original software. Sometimes there's only one line jump sometimes theres a few and sometimes none. The only saving grace in this output is that the line will always end with a number finishing by 0;
Source:
a;b;c;d;e;f;0;
a;b;c;d;e;f
f continued;0;
a;b;c;d;e;f;140;
a;b;c;d;e;f
f continued
and continued again;0;
What I'm looking to achieve
a;b;c;d;e;f;0;
a;b;c;d;e;f f continued;0;
a;b;c;d;e;f;140;
a;b;c;d;e;f f continued and continued again;0;
