A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Removal of redundant spaces



 
 
Thread Tools Display Modes
  #1  
Old May 14th, 2010, 01:32 PM posted to microsoft.public.word.docmanagement
Grey Old Man[_2_]
external usenet poster
 
Posts: 28
Default Removal of redundant spaces

I am attempting a word macro to tidy up a large volume of text. I have a few
questions that I hope somebody can help me with.

The space bar has been used extensively to indent the text from the left!

I have used:

With Selection
.HomeKey Unit:=wdStory
With .Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = " [ ]@([! ])"
.Replacement.Text = " \1"
.MatchWildcards = True
.Wrap = wdFindStop
.Format = False
.Forward = True
.Execute Replace:=wdReplaceAll
End With
End With

to remove multiple spaces but this leaves a single space before the first
capitalized letter.

………..Sentence starts here (multiple leading spaces)

becomes

..Sentence starts here (single leading space)

Any ideas on how to remove the offending single space?


Secondly, trailing spaces have been used in a table. What is the equivalent
to paragraph mark ^p or new line mark ^l when confined to a table?

Table text ………


Thanks in anticipation.

  #2  
Old May 14th, 2010, 02:40 PM posted to microsoft.public.word.docmanagement
Graham Mayor
external usenet poster
 
Posts: 18,297
Default Removal of redundant spaces

CTRL+A then CTRL+E then CTRL+L should remove all leading and trailing spaces
whether in the main document area or table cells. No need for a macro.

--

Graham Mayor - Word MVP

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



"Grey Old Man" wrote in message
news
I am attempting a word macro to tidy up a large volume of text. I have a
few
questions that I hope somebody can help me with.

The space bar has been used extensively to indent the text from the left!

I have used:

With Selection
.HomeKey Unit:=wdStory
With .Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = " [ ]@([! ])"
.Replacement.Text = " \1"
.MatchWildcards = True
.Wrap = wdFindStop
.Format = False
.Forward = True
.Execute Replace:=wdReplaceAll
End With
End With

to remove multiple spaces but this leaves a single space before the first
capitalized letter.

.....Sentence starts here (multiple leading spaces)

becomes

.Sentence starts here (single leading space)

Any ideas on how to remove the offending single space?


Secondly, trailing spaces have been used in a table. What is the
equivalent
to paragraph mark ^p or new line mark ^l when confined to a table?

Table text ...


Thanks in anticipation.



  #3  
Old May 14th, 2010, 02:47 PM posted to microsoft.public.word.docmanagement
DeanH
external usenet poster
 
Posts: 1,783
Default Removal of redundant spaces

Little trick for you, changing selected text from Left/Right/Justified to
Centred alignment, then back will remove superfluous spacing and tabs from
the beginning and end of the text paragraph.
This helps especially in table cells where there is not search facility for
End of Cell marker (this has been asked here many times before without ajor
success).
Hopefully you can use this little trick in your macro.

See also http://gregmaxey.mvps.org/Clean_Up_Text.htm for a previously
created "macro" that you can have a look at.

Hope this helps
DeanH


"Grey Old Man" wrote:

I am attempting a word macro to tidy up a large volume of text. I have a few
questions that I hope somebody can help me with.

The space bar has been used extensively to indent the text from the left!

I have used:

With Selection
.HomeKey Unit:=wdStory
With .Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = " [ ]@([! ])"
.Replacement.Text = " \1"
.MatchWildcards = True
.Wrap = wdFindStop
.Format = False
.Forward = True
.Execute Replace:=wdReplaceAll
End With
End With

to remove multiple spaces but this leaves a single space before the first
capitalized letter.

………..Sentence starts here (multiple leading spaces)

becomes

.Sentence starts here (single leading space)

Any ideas on how to remove the offending single space?


Secondly, trailing spaces have been used in a table. What is the equivalent
to paragraph mark ^p or new line mark ^l when confined to a table?

Table text ………


Thanks in anticipation.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:07 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.