Reading A Delimited File
Reading A Delimited File
A DELIMITED FILE
It is data in a delimited text file arrange in rows and columns, with entry peer row
Each column is separate from the next field by a field separator character/a delimiter(comma)
1. They are easy to read and write by most programming languages and software application
2. They are good format for exchange data between different applications
3. They are compact format , which makes them easy to store and transmit
DISADVANTAGES
1. They can be difficult to parse , as the delimiter character can also occur within the data itself
2. They can be difficult to handle if the data contains special character , such as comma or tabs
3. They can be difficult to use for data analysing , as they do not provide any structure or
metadata about the data
DO’S
DON’TS