- Jul 2, 2001
- 7,028
- 0
- 0
Originally posted by: Electric Amish
Use GREP.
amish
Originally posted by: ffmcobalt
Originally posted by: Electric Amish
Use GREP.
amish
or, if you're on a more user friendly opperating system that's actually compatible with something fairly often, you might try doing it the hard way.
Arrow keys and the delete button.
nik
Originally posted by: SgtBuddy
I don't know what I expected to find when I opened this thread.
/sigh
:|
Originally posted by: singh
What kind of a solution are you looking for? What OS are you on?
Originally posted by: propellerhead
In MS Word,
File | Open. Open your file.
Edit | Replace. For the Find What text, enter "^p". That's the special code for a paragraph mark. Don't enter anything in the Replace With text.
Replace All.
File | Save As.
Originally posted by: SgtBuddy
I don't know what I expected to find when I opened this thread.
/sigh
:|
Originally posted by: clicknext
I thought it was pictures of you stripping... I was quite eager to see that but now I'm dissapointed.
Originally posted by: HenHowC
if you want to learn how to strip, try this place![]()
that's too bad(18 and over)
Originally posted by: SgtBuddy
I don't know what I expected to find when I opened this thread.
/sigh
:|
Originally posted by: ffmcobalt
Originally posted by: Electric Amish
Use GREP.
amish
or, if you're on a more user friendly opperating system that's actually compatible with something fairly often, you might try doing it the hard way.
Arrow keys and the delete button.
nik
Would that actually remove all the CRs, or just the paragraphs?Originally posted by: propellerhead
In MS Word,
File | Open. Open your file.
Edit | Replace. For the Find What text, enter "^p". That's the special code for a paragraph mark. Don't enter anything in the Replace With text.
Replace All.
File | Save As.
Originally posted by: Rias
If you have access to perl I would do it like this:
perl -pi.bak -e 's/\r//g' filename
It will remove all carriage returns in the file (assuming that is really what you want to do) and make a copy of the oldfile in filename.bak.
