in reply to Re^2: EMPTY OUTPUT FILE GENERATED
in thread EMPTY OUTPUT FILE GENERATED
So the basic problem is that tabs are not easily "visible". My programming editor also converts "tabs" to "spaces" when I write a program file. No program file that I work with has tab characters in it. When I "save it" all the tabs disappear.
There is not a "standard" for the number of spaces for a tab character. In the "olden days", this made a difference because it saved disk space. This makes no difference now. Or in a practical sense, the space saving makes no difference. And it is "hard to read" the output.
Many of the DB output formats that I work with use "|" as the field separator. That is not a valid character for a name or an address. This works well for many types of DB fields that you might want to import/export and you can just use a simple split() for input. Perl has a number of .CSV parsers and they do work very, very well. That is another option.
This tab idea is a problem because it is hard to see! Yes, I can deal with it and I can set editor settings to allow me to see the difference between 2 spaces versus one space and tab, but this is a hassle.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: EMPTY OUTPUT FILE GENERATED
by tobyink (Canon) on Sep 28, 2012 at 07:06 UTC | |
by Marshall (Canon) on Sep 28, 2012 at 16:49 UTC |