Make a perl script (yourscript.pl) that contains the line:
s/[\n\r\f]//g
Then run:
perl -i.tmp -p yourscript.pl file.txt
against your file...say file.txt.
That is how you edit a file in-place. You will have your old file as file.txt.tmp to do a comparison and confirm it worked if you want.
You could also do this for each line if you read the file into an array.
That is...
open (F,"file.txt"); @ar = <F>; close(F); foreach (@ar) { s/[\n\r\f]//g; # do what you want with the line. }

Update:
Well, it seems I was a little slow on the typing, other than the other posts do not contain the '\f'. You may have wanted to include this as a reply on your last post cuz now that one is going to get unneeded attention.

In reply to Re: Strip line feeds from file by cbro
in thread Strip line feeds from file by mikevanhoff

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.