Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ejonesQuestions:
Is it a one record file? If you open it with a a text editor Excel see just one record or multiple records?
If it is a one record file, then you could put something in the RecordDelimiter field of the Delimited File node type that will not appear in the file. If a text editor indicates that there are multiple records, then try one of these:
\n - if the file is on or came from a Unix system
\r\n - if the file is on or came from a Windows system
\r - might also be a possibility but I've never seen it.
Is there some other way that records are identified for example, maybe there are a certain number of characters per record? An IBM Mainframe might produce a file like this and you would need to use the Fixed Format File node type and then split up the fields in filter node using split() and "|" as the second parameter.
Ernest