On 2012-08-11, Lisa wrote: > > If it is not possible to get the comma out of the value, I would like > to delimit the fields with something other than a comma. But I could > not find a way to do this either.
I just realized delimiters are in the format string "%D,%P,%t\n". So I'm now using a format string of "%D!!%P!!%t\n", and then using sed 's/,//g;s/!!/,/'.
