Because I have lines like
space space **da ta** tab tab **data** tab **data** tab tab tab tab **da ta**
I want the above to turn into
s/^[ \t]+//; # remove leading whitespace (just once) s/[ \t]+/,/g; # replace all runs of spaces into commas globally