Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Can you automatically remove empty lines? (https://thetfp.com/tfp/tilted-technology/87057-can-you-automatically-remove-empty-lines.html)

fallsauce 04-11-2005 11:18 PM

Can you automatically remove empty lines?
 
I want to convert some documents to ebooks, except the empty line (instead of indents) looks really bad in MS Reader. I don't really want to do this manually since the document is quite long, so I'm really hoping someone will know a program that can do this automatically.

vinaur 04-12-2005 05:04 AM

You could use a text editor with search and replace function using regular expressions. In the search I would place \r\n\r\n and in the replace field \r\n\t . The \r\n\r\n will find two new lines and replace them with one new line and a tab (\r\n\t). You can just click Replace All after you get the regex correct.

My favorite text editor with regex search and replace capability - EditPad

My favorite regex tutorial.

Redlemon 04-12-2005 05:29 AM

I have a PalmOS-based handheld, not MS, but I know that some of the reader applications can automatically remove the line and add indents when displaying the text. Is that an option in MS Reader? Or, is there a freeware doc reader for your platform with that capability?

fallsauce 04-12-2005 01:39 PM

I don't think there is that option in MS Reader, can you tell me the names of those applications that can do that?

Redlemon 04-12-2005 01:50 PM

Sorry, I had to nuke my Clie a few months ago, and I don't remember what the application was. But it was PalmOS, so that doesn't really help you either.

vinaur 04-12-2005 04:50 PM

EditPad would work with your problem, but the syntax I gave you was incorrect. I forgot that you can't use regular expressions in the replace field, but you can do this: In the search field put (\r\n)\r\n and in the replace field put $1<Shift+Tab>. That should work. Sorry for my mistake.


All times are GMT -8. The time now is 01:48 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37