Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I have this that works so far for "Find":
[\.][\ ][A-Z] but I can't figure out the "Replace" part. Something to do with $1$2, maybe a "\ " (without the quotes). Dunno. There is a document that I am editing that has a lot of bad grammar. Many sentences only have one (1) space between the preceding period and the beginning of the next sentence. Also, it should not put two spaces at the end of a paragraph. Extra credit: Also trying to replace a specific word with the same word, yet in bold. Thanks. |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Hi Dougmeister,
Find= (. )([A-Z]) Replace= \1 \2 with Wildcards on As for the bolding- Find= Text to find Replace= ^& and, with the replacement input box active, select the bold attribute via Format|Font -- Cheers macropod [Microsoft MVP - Word] "Dougmeister" wrote in message ... I have this that works so far for "Find": [\.][\ ][A-Z] but I can't figure out the "Replace" part. Something to do with $1$2, maybe a "\ " (without the quotes). Dunno. There is a document that I am editing that has a lot of bad grammar. Many sentences only have one (1) space between the preceding period and the beginning of the next sentence. Also, it should not put two spaces at the end of a paragraph. Extra credit: Also trying to replace a specific word with the same word, yet in bold. Thanks. |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
See:
http://gregmaxey.mvps.org/Two_Spaces..._Sentences.htm macropod wrote: Hi Dougmeister, Find= (. )([A-Z]) Replace= \1 \2 with Wildcards on As for the bolding- Find= Text to find Replace= ^& and, with the replacement input box active, select the bold attribute via Format|Font "Dougmeister" wrote in message ... I have this that works so far for "Find": [\.][\ ][A-Z] but I can't figure out the "Replace" part. Something to do with $1$2, maybe a "\ " (without the quotes). Dunno. There is a document that I am editing that has a lot of bad grammar. Many sentences only have one (1) space between the preceding period and the beginning of the next sentence. Also, it should not put two spaces at the end of a paragraph. Extra credit: Also trying to replace a specific word with the same word, yet in bold. Thanks. |
#4
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I don't know if you can do all the functions you want in one Find/Replace
string, but you can do them in 3. To find and replace one space after a period needs 2 passes: FIRST PASS Find what: .. [A-Z] (use wildcards) Replace with: .. |^& SECOND PASS Find what: |. (that's pipe period space) Replace with: (nothing) I used a pipe (|) character as a distinctive marker to find. You can use whatever character you want as long as it is not present in the text of the document. To clean up any spaces at the end of a paragraph: Find what: ^p (that's a space before the paragraph marker) Replace with: ^p (no extra spaces) To replace a word with same text but bold: Find what: text (whatever the word is you want to bold) Replace with: (nothing - set the format to bold. Format Font Bold) "Dougmeister" wrote: I have this that works so far for "Find": [\.][\ ][A-Z] but I can't figure out the "Replace" part. Something to do with $1$2, maybe a "\ " (without the quotes). Dunno. There is a document that I am editing that has a lot of bad grammar. Many sentences only have one (1) space between the preceding period and the beginning of the next sentence. Also, it should not put two spaces at the end of a paragraph. Extra credit: Also trying to replace a specific word with the same word, yet in bold. Thanks. |
#5
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Dougmeister wrote:
There is a document that I am editing that has a lot of bad grammar. Many sentences only have one (1) space between the preceding period and the beginning of the next sentence. This is not grammatically incorrect, nor is it typographically incorrect. Two spaces between sentences is a throwback to the days of the mechanical typewriter. It is completely unnecessary with word processors and proportionally spaced fonts. -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org |
#6
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Thanks!
"macropod" wrote: Hi Dougmeister, Find= (. )([A-Z]) Replace= \1 \2 with Wildcards on As for the bolding- Find= Text to find Replace= ^& and, with the replacement input box active, select the bold attribute via Format|Font -- Cheers macropod [Microsoft MVP - Word] "Dougmeister" wrote in message ... I have this that works so far for "Find": [\.][\ ][A-Z] but I can't figure out the "Replace" part. Something to do with $1$2, maybe a "\ " (without the quotes). Dunno. There is a document that I am editing that has a lot of bad grammar. Many sentences only have one (1) space between the preceding period and the beginning of the next sentence. Also, it should not put two spaces at the end of a paragraph. Extra credit: Also trying to replace a specific word with the same word, yet in bold. Thanks. . |
#7
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Thanks. I did not know this.
"Graham Mayor" wrote: Dougmeister wrote: There is a document that I am editing that has a lot of bad grammar. Many sentences only have one (1) space between the preceding period and the beginning of the next sentence. This is not grammatically incorrect, nor is it typographically incorrect. Two spaces between sentences is a throwback to the days of the mechanical typewriter. It is completely unnecessary with word processors and proportionally spaced fonts. -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org . |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
spaces following a period | Microsoft Word Help | |||
Find/replace any first letter of a sentence after a single period | Microsoft Word Help | |||
Autocorrect a single space after period at end of sentence | Microsoft Word Help | |||
Find and Replace - Period and space at end of sentence | Microsoft Word Help | |||
replacing period-space with period-space-space | Microsoft Word Help |