Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: stonysmithOkay.. line 2 of the file has a NUL (0x00) character in position one.
Unfortunately, our software has issues with that particular character. The data did not get read into the BRD temp file.
The question becomes:
- How often do you have to deal with such data?
- Is this a one time thing or do you need a repeatable solution?
- Can the NUL be simply removed?
- Is it possible that this is unicode data?
===============
One solution, if the data is stored on linux, is to use the TR program from a command line:
tr -d '\000' <myfile.in >myfile.out