For data preparation or preprocessing tasks, tools like 'sed' or 'awk' come in handy.
If
you're on a Unix/Linux machine, these tools are most likely already
installed -- for Windows, binaries can be obtained e. g. here:
http://gnuwin32.sourceforge.net/packages.htmlHaving, for instance, 'sed' installed*1, you can do [from a *nix shell or Windows' cmd.exe]:
sed "s/,/ /g" <sourcepath>/data.csv > <targetpath>/data.ssvwhich takes your file [containing comma-separated values], data.csv, and creates a copy, data.ssv, with space-separated values only.
--fbahr
*For Windows [
http://gnuwin32.sourceforge.net/packages/sed.htm], you can choose btw. a version with an installer or a zip'ped archive only containing the executable binary. If you pick the latter, it's probably easiest to unzip the executable right into the directory containing your data file, open cmd.exe, navigate to the respective directory and execute
sed "s/,/ /g" data.csv > data.ssv