> Python or Perl, since your post referred to Python
Perl... preferrably. My point there is that I am grasping at straws at this
point...
I looked at the pack function that was also recommended but I am not sure
how to use it. Could anyone possibly give me an example? Mainly it looks as
though my data can only contain strings, floating point decimals, or fixed
point decimals but not a combination there of. My data is ASCII format but
would it be considered string data even though a data string may look like
"2005-08-05, 13:36:06, 3236.453232, 11123.456, 0.0, 21, 224.332" for
purposes of conversion to raw binary format? Also, the function says it
calls for a TEMPLATE variable to be passed to it. Is this required? And this
looks as though it would require a template character to be passed for every
character in the file??? This seems like it will be very processor intensive
as well as nearly impractical from a code writing perspective, as I would
have to build an array of the TEMPLATE characters and then build a
comparison function to check which character matches the TEMPLATE
designation and then convert each character to binary at that point. Am I
way off base here? Just seems like there would be a more practical way to
achieve this.
> Yup, your computer probably has 100 times as much memory.
True... but what does that have to do with process intensity and the
capabilities of the tools?
> If a C++ program would hang on 5MB files, how can programs handle 10M
> MP3 files, or 700 MB movies?
I agree with your point. Admittedly it was probably due to poor programming.
I have only been coding for 3 years now and only part time at that. But I
would be glad to send you the programs I was working on and see if you make
them work.

Although, I did finally get that covered with Perl so it not
much of a concern at the moment.
> Again: 5MB is not much. My best guess is that you should rethink your
> algoritm(s).
Agreed, see above. Thank you for pointing out all of the obvious problems
here. Perhaps you would be so kind as to make some suggestions on how I
could actually accomplish this now?