Hi all!
Is there any plugin that can help me in viewing comma separated values (.cvs) files like columns, something like:
from: a1,b1,c1 a2,b2,c2
to: a1 b1 c1 a2 b2 c2
Thanks.
No, currently there is not.
You could perhaps replace each column separating , by a TAB character, with tab size set to a large number of spaces.
"Column Align of a csv file" http://sourceforge.net/forum/forum.php?thread_id=1900639&forum_id=331754
You might also be helped by turning each column into a row (new line).
"Deleteing part of Comma Delim File" http://sourceforge.net/forum/forum.php?thread_id=1953294&forum_id=331754
You original rows' contents may become more clear when you prefix each original column by the number of spaces (or tabs) of the column number it reflects. This could be done by recording and playing a macro.
first,second,third,etcetera more,evenmore,andso,on
could be turned into something like
first _second __third ___etcetera more _evenmore __andso ___on
Hi all!
Is there any plugin that can help me in viewing comma separated values (.cvs) files like columns, something like:
from:
a1,b1,c1
a2,b2,c2
to:
a1 b1 c1
a2 b2 c2
Thanks.
No, currently there is not.
You could perhaps replace each column separating , by a TAB character, with tab size set to a large number of spaces.
"Column Align of a csv file"
http://sourceforge.net/forum/forum.php?thread_id=1900639&forum_id=331754
You might also be helped by turning each column into a row (new line).
"Deleteing part of Comma Delim File"
http://sourceforge.net/forum/forum.php?thread_id=1953294&forum_id=331754
You original rows' contents may become more clear when you prefix each original column by the number of spaces (or tabs) of the column number it reflects. This could be done by recording and playing a macro.
first,second,third,etcetera
more,evenmore,andso,on
could be turned into something like
first
_second
__third
___etcetera
more
_evenmore
__andso
___on