in reply to Parsing a text file

Found my answer. Upon further investigation of the file in a Hex editor, I found the characters were not different (0D 0A). Because of this, I guess I either need to run a RegEX to determine 'end of record' or just set $/="|\n", which actually solved my problem. Thanks for the time. As a novice/beginning Perl guy, I have used the site often for code snippets.