Is there a tool that can take this:
Attack,Decay,Sustain,Release
45,-1,26,55
"VERY LONG TEXT",false,true,true
0,0,1,1
and output it in a tabbed-format like this:
Attack, Decay, Sustain, Release
45, -1, 26, 55
"VERY LONG TEXT", false, true, true
0, 0, 1, 1
I need it for some arrays that I'm building with CSV data, I'm currently doing it manually but wondering if there's a faster way.
Thanks