Are you reading a file that was created with windows? Perl on windows translates the crlf line separators to "\n" (Removes the ^M) as it reads the file. You can do the same thing on other systems by specifying the crlf "layer" on your open statement or with
binmode. The following code demonstrates that each line is read with the newline, but without the carriage return.
use strict;
use warnings;
use Test::More tests=>4;
my $windows_file =
"abc". "\r\n"
."def". "\r\n"
."ghi". "\r\n"
;
my $in_file = \$windows_file;
my $string;
open my $fh, "<:crlf", $in_file;
$string = <$fh>;
ok( $string eq "abc\n", "line 1" );
$string = <$fh>;
ok( $string eq "def\n", "line 2" );
$string = <$fh>;
ok( $string eq "ghi\n", "line 3" );
ok( eof($fh), "end-of-file");
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.