
Tips.Net > WordTips Home > Formatting > Paragraph Formatting > Automatically Formatting an ASCII File with WordBasic
Summary: Use this simple WordBasic macro to help remove hard returns from inappropriate places in an ASCII file. (This tip works with Microsoft Word 6, and Word 95.)
One of the biggest problems in formatting what was previously an ASCII file is modifying it so there are only hard returns at the end of paragraphs. Most ASCII files have a hard return at the end of every line of the file, and two hard returns at the end of every paragraph. If you have an ASCII file that is formatted like this, such as something you downloaded off the Internet, the following WordBasic macro will be invaluable. It formats an entire file so there are only hard returns at the end of paragraphs.
Sub MAIN
EditFindClearFormatting
EditReplaceClearFormatting
Fmt("^p^p", "{|}")
Fmt("^p", " {@}")
Fmt(" {@}", " ")
Fmt("{@}", " ")
Fmt("{|}", "^p")
End Sub
Sub Fmt(FromWord$, ToWord$)
StartOfDocument
EditReplace .Find = FromWord$, .Replace = ToWord$, .WholeWord = 0, \
.MatchCase = 0, .Format = 0, .ReplaceAll = 1
End Sub
Tip #186 applies to Microsoft Word versions: 6 95
Find and Replace Almost Anything! An invaluable resource for learning how to harness the full power of Word's search and replace capabilities. You'll discover everything you need in order to master all the intricacies of finding and replacing elements of your document, including the super-powerful ?wildcard searches? available in Word.
Check out WordTips: Find and Replace today!
Uncover how you can master the full potential of printing your documents. Everything you wanted to know about printing and printers, using Word. (more information...)
Ask a Word Question
Make a Comment
Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips