I am trying to parse a file generated by LGA Tracon that lists the position data for aircraft over a given time frame. The data of interest starts with TRACKING DATA and ends with SST and there are thousands of entries per file. The system generating the file, Common ARTS, is very rigid in its formatting and we can expect the column spacing to be consistent. Any help would be greatly appreciated.
Thanks,
Here is an image to preserve the exact formatting

(source: schedulebook.com)
Here is a reduced text file.
If you choose to ignore jball’s suggestion of FileHelpers (which looks great) I would suggest reading the file line by line until you identify a line starting with
TRACKING DATAThen pull the next 11 lines into an array and start manipulating with
.instr( )You may find this solution is faster than using an additional library as your hand-built code will be tailored directly to the problem in hand. Not having used FileHelpers I don’t know of its speed overhead.
I have written a lot of file parsing before in the past (funnily enough also with travel based text files) and found it pretty fast/efficient