I have a text file like the one below
a|b|c|d|e|f|g|h|i|.... with no end of line delimters present. Now I have to parse it as a,b,c as column headers row 1 to be d e f and so on.
Parsing it as a tab delimited file will also do..
I am stuck in the way i need to parse the lines.
1. there are a number of data sets all in a single line- I can use slurp??.
2. Can i identify tis pattern (.*|)3 times and have a \n inserted after that?.