http://qs1969.pair.com?node_id=815560


in reply to Re: how to print commas in csv
in thread how to print commas in csv

Yup, I agree here.

Another possibility is if the receiving program can define its separator to use a different character to comma not found in the data. (I like TAB).

Replies are listed 'Best First'.
Re^3: how to print commas in csv
by Anonymous Monk on Jan 05, 2010 at 10:31 UTC
    I love TAB so much that i have this in my .vimrc:
    """""""" "" Rotate tabstop value between 2, 4, 8, 16, 32 and 64 "" Mapped to <F2> "" function FDO_TabToggle () let TabStopVal = &tabstop let TabStopVal = TabStopVal * 2 if TabStopVal > 64 let TabStopVal = 2 endif let &tabstop = TabStopVal echo"TabStop is now: " TabStopVal endfunction
    A reply falls below the community's threshold of quality. You may see it by logging in.