taper
taper

Reputation: 9834

Whats the right name for fixed position files?

You can structure data in various ways: for example comma separated or tab separated.

But you can also structure data on positions. So, for example, the first 20 characters are meant for a phone number, the following 2 characters are meant for the age of someone etc...

How would you call such a file in general?

Upvotes: 3

Views: 2842

Answers (1)

BugFinder
BugFinder

Reputation: 17868

If you had id[3]name[5]phone[6]

001Liz  882833
002Paul 892733
003John 927477

this is a fixed format file.

Upvotes: 1

Related Questions