• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

STRIPPING!!!!

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: 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

for a 1 megabyte text file? i'll pass
 
Originally posted by: singh
What kind of a solution are you looking for? What OS are you on?

i'm on win2k
I'm hoping i just just load a program, specify a file, specify an output directory, and click go
 
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: 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.

thanks bro, now i just need to install word 😉
 
Originally posted by: clicknext
I thought it was pictures of you stripping... I was quite eager to see that but now I'm dissapointed.

Just give me a few minutes
*warms up the fully digital 1080p vid cam [that i wish i had]*
😀
 
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


I find your definition of "more user firendly" odd. You'd find it easier to press "end, delete" a thousand times in repetition than to type ":%s/\n/ /g" in vi and have the whole thing done for you?
 
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.
Would that actually remove all the CRs, or just the paragraphs?

 
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.
 
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.

oohh.... you're good...

edit: I nominate you for "best first post ever" 🙂
 
Back
Top