in reply to how to identify a fixed width file
But as for your description of the "fixed width" file format: I just don't understand it, and the part that you showed in the example doesn't look very fixed width to me.
Maybe you could show us a few samples of that file? (Real samples, where you can see patterns)
There's a nice trick to determine if something is fixed-width with delimiters: take a long string that consists of the delimiting character, and binary-AND it with many records. If the delimiting character is still there at some places, that is very likely a delimiter within a fixed-width record.
(But since I don't understand your file format I can't say if that trick is applicable here).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to identify a fixed width file
by tachyon-II (Chaplain) on May 14, 2008 at 14:08 UTC | |
by ftumsh (Scribe) on May 14, 2008 at 15:26 UTC | |
|
Re^2: how to identify a fixed width file
by ftumsh (Scribe) on May 14, 2008 at 13:25 UTC | |
by moritz (Cardinal) on May 14, 2008 at 15:49 UTC |