Reply
 
Thread Tools Display Modes
  #1   Report Post  
Joe
 
Posts: n/a
Default Converting Word to text

Can anyone supply tips for converting large Word documents to plain text,
preserving or translating as much formatting as possible?

I'm especially interested in bold, underline and italics. Italics, for
example, can be translated in text files like _this._ But would you have to
go through changing them all manually?

Thanks,
Joe

  #2   Report Post  
CyberTaz
 
Posts: n/a
Default

Hey Joe-

Use FileSave As and open the bottom list to choose Save As Type of your
choice. Rich Text Format (RTF) will preserve formatting.

HTH |:)

"Joe" wrote:

Can anyone supply tips for converting large Word documents to plain text,
preserving or translating as much formatting as possible?

I'm especially interested in bold, underline and italics. Italics, for
example, can be translated in text files like _this._ But would you have to
go through changing them all manually?

Thanks,
Joe

  #3   Report Post  
Graham Mayor
 
Posts: n/a
Default

You need to use the Replace function in Word to replace the formatting.
eg
In the find box enter CTRL+B (font bold)
In the replace box enter CTRL+B CTRL+B (font not bold) *^&*

This will put an asterisk either side of each bold bit.
For italics and underline you can use a similar technique.

Unfortunately you can't record formatting options in the macro recorder so
you would have to add them to vba manually, if you wanted to create a macro
to operate on several documents. The code for the above example is

Sub ReplaceExample()

Selection.HomeKey Unit:=wdStory
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
'**********************
.Text = ""
.Font.Bold = True

.Replacement.Text = "*^&*"
.Replacement.Font.Bold = False
'**********************
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = False
End With
Selection.Find.Execute replace:=wdReplaceAll
End Sub

http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




Joe wrote:
Can anyone supply tips for converting large Word documents to plain
text, preserving or translating as much formatting as possible?

I'm especially interested in bold, underline and italics. Italics,
for example, can be translated in text files like _this._ But would
you have to go through changing them all manually?

Thanks,
Joe



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
copying files from Wordperfect to Microsoft Word Juliet New Users 1 January 31st 05 05:41 PM
Continuous breaks convert to next page breaks Jennifer Hunt Microsoft Word Help 2 December 30th 04 05:45 PM
How to change merge forms from Word Perfect to Microsoft Word dollfindance Microsoft Word Help 2 December 30th 04 03:35 PM
Macro that will add the file path & date to Word footnotes? Rich P Microsoft Word Help 2 December 15th 04 07:49 PM
saving the workspace Mike Microsoft Word Help 3 December 8th 04 11:32 PM


All times are GMT +1. The time now is 08:20 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"