Space or tabs as separator in CSV
I usually put "sep=," or "sep=;" as first line on my csv files so i can easily open them with excel. But is there a way to use this with space and tab separated files?
Solution 1:
"sep=/t"
for tab delimited
"sep= "
for space delimited, should work