^M can appear only once at the end of each line
What sort of alternate universe are you living in? Have you never seen output from processes that do something like this?
while( @to_do ) {
# do something with next value of @to_do list...
shift @todo;
...
# report progress without causing the terminal to scroll:
printf( " ... still %4d more to go\r", scalar @to_do );
}
Of course, for stuff like that, just deleting all the "\r" characters will probably not produce results that you would really want. But my point is: do not assume there is ever any sort of guarantee that a DOS text file will always have
exactly one CR for every LF, and/or that these will always appear as CRLF.
(If you need another example, look at the manual for the unix "zip" command, esp. the "-l" option.)
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.