computerwhiz
Programmer
I am writing a program to parse certain information out of various length datafiles. I can read each line of the file as a record and write the same line to another file without any problems, but my problem is that I need to find a way to read the line of info and take out of that line only the information that is needed. example:
check 5053625
payee some vendor date 09/25/03
all I want is the check number from the first line, the vendor name and the actual date from the second line. I have no need for the other info. The datafile is much bigger but I think you got my point. I will be writing all of the data to a CSV file.
check 5053625
payee some vendor date 09/25/03
all I want is the check number from the first line, the vendor name and the actual date from the second line. I have no need for the other info. The datafile is much bigger but I think you got my point. I will be writing all of the data to a CSV file.