If you are reading a file where line end sequences are 'CR' followed by 'LF' (that is, "\r\n"), and you are sure that each line is ended in this fashion, then you should tell Perl so:

Just set the special variable $/ to the end-of-line sequence. In your case, that would be:

$/ = "\r\n";

Then, <FILE> will work as expected, as will chomp, and all other functions or operators expecting line endings to match the sequence in $/

Also noteworthy is the opposite variable, $\, which gets appended after all print operations, so you may save some time and have more readable lines if you use that.



If your problem is that the lines are not recognized, or you're not sure whether they end in "\n" or "\r\n", then just use $/ = "\n";, and read your file. Then, for each line, just s/\r$//;, if you care only for readability, and don't need to keep "control" characters in the flow.


In reply to Re: Dealing with non-ascii characters when reading file. by kzwix
in thread Dealing with non-ascii characters when reading file. by rjbioinf

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.