I have a small C++ time card application that writes the info to a txt file. I'm trying to parse through the txt file in a web app language, but I'm not sure how to parse out the date format.
I've talked to the developer of the application, but they don't know anything about the date, they use a 3rd party dll to write to and read from the txt file. Supposedly it's supposed to be writing in an INI or Registry format, but I don't know much about that.
Any ideas?
Here are some of the strings. The dates I'm trying to parse are in bold:
7/22/01 00:00:00 (12:00:00 AM)
date=454C 8 00 00 00 00 C0 1C E2 40
7/22/01 00:30:00 (12:30:00 AM)
date=454C 8 AB AA AA AA C0 1C E2 40
7/22/01 00:30:00 (9:30:30 AM)
date=454C 8 2E D8 82 AD CC 1C E2 40
7/20/01 00:00:00 (12:00:00 AM)
date=454C 8 00 00 00 00 80 1C E2 40
- tleish
I've talked to the developer of the application, but they don't know anything about the date, they use a 3rd party dll to write to and read from the txt file. Supposedly it's supposed to be writing in an INI or Registry format, but I don't know much about that.
Any ideas?
Here are some of the strings. The dates I'm trying to parse are in bold:
7/22/01 00:00:00 (12:00:00 AM)
date=454C 8 00 00 00 00 C0 1C E2 40
7/22/01 00:30:00 (12:30:00 AM)
date=454C 8 AB AA AA AA C0 1C E2 40
7/22/01 00:30:00 (9:30:30 AM)
date=454C 8 2E D8 82 AD CC 1C E2 40
7/20/01 00:00:00 (12:00:00 AM)
date=454C 8 00 00 00 00 80 1C E2 40
- tleish