![]() |
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. |
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
![]()
Hi, I'm running Word '03 on WinXP sp3.
I'm trying to catch the word "wouldest" in a multiword selection and convert it to "would". I've got the find/replace dialog open, wildcards checked, all other options cleared, but this Find string: (*)[! ]dest is pulling in the entire selection up to and including the word "wouldest". If I hit Next the selection recedes by one word at its beginning. The way I see it, the [! ] should kill finding multiple words, since the space is not allowed. Do I have that right? I must be doing something wrong. Any input would be appreciated. p. |
Ads | |
#2
|
|||
|
|||
![]()
Sorry, you don't have it right. The [! ] in that expression means only
that the single character preceding "dest" must not be a space; but it doesn't restrict any of the characters that come before that. The real cause of your problem, though, is the asterisk. That will match as many characters as possible, including spaces and even paragraph marks. For the task as stated, I don't quite understand why you're using wildcards -- you should be able to search for the specific word "wouldest" and replace it with "would". But if you do want to use wildcards, I'll suggest either of these search terms: [! ]@dest [A-Za-z]@dest The difference is mainly that the first one would match digits and punctuation marks as well as letters. -- Regards, Jay Freedman Microsoft Word MVP FAQ: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. On Tue, 15 Jun 2010 04:28:06 -0700 (PDT), "Paul B." wrote: Hi, I'm running Word '03 on WinXP sp3. I'm trying to catch the word "wouldest" in a multiword selection and convert it to "would". I've got the find/replace dialog open, wildcards checked, all other options cleared, but this Find string: (*)[! ]dest is pulling in the entire selection up to and including the word "wouldest". If I hit Next the selection recedes by one word at its beginning. The way I see it, the [! ] should kill finding multiple words, since the space is not allowed. Do I have that right? I must be doing something wrong. Any input would be appreciated. p. |
#3
|
|||
|
|||
![]()
I think it might help to clarify what it means to 'catch the word
"wouldest" in a multiword selection'. Selection means something very specific in windows environments. Do you mean instead that you want to match all instances of "wouldest" occuring within a specific pattern of words? A few simple examples would help. On Jun 15, 8:26*am, Jay Freedman wrote: Sorry, you don't have it right. The [! ] in that expression means only that the single character preceding "dest" must not be a space; but it doesn't restrict any of the characters that come before that. The real cause of your problem, though, is the asterisk. That will match as many characters as possible, including spaces and even paragraph marks. For the task as stated, I don't quite understand why you're using wildcards -- you should be able to search for the specific word "wouldest" and replace it with "would". But if you do want to use wildcards, I'll suggest either of these search terms: [! ]@dest [A-Za-z]@dest The difference is mainly that the first one would match digits and punctuation marks as well as letters. On Tue, 15 Jun 2010 04:28:06 -0700 (PDT), "Paul B." wrote: Hi, I'm running Word '03 on WinXP sp3. I'm trying to catch the word "wouldest" in a multiword selection and convert it to "would". I've got the find/replace dialog open, wildcards checked, all other options cleared, but this Find string: (*)[! ]dest is pulling in the entire selection up to and including the word "wouldest". If I hit Next the selection recedes by one word at its beginning. The way I see it, the [! ] should kill finding multiple words, since the space is not allowed. Do I have that right? I must be doing something wrong. Any input would be appreciated. p. |
#4
|
|||
|
|||
![]()
Given that there is no such word as 'wouldest' in the spelling dictionary, I
would have thought that the spell check could have taken care of this? F7 -change all? |
#5
|
|||
|
|||
![]()
Spaces are allowed within the "*" bit. You are looking for the anything
starting at the beginning of a word (*) followed by a single non-space ([! ]) followed by "dest" at the end of a word. You have found a whole string of stuff followed by "l" (a non-space) followed by "dest". I don't see why you can't just look for wouldest, but what you need to do to the search string you have is make it look for a sequence of non-space characters ... [! ]@dest -- Enjoy, Tony www.WordArticles.com "Paul B." wrote in message ... Hi, I'm running Word '03 on WinXP sp3. I'm trying to catch the word "wouldest" in a multiword selection and convert it to "would". I've got the find/replace dialog open, wildcards checked, all other options cleared, but this Find string: (*)[! ]dest is pulling in the entire selection up to and including the word "wouldest". If I hit Next the selection recedes by one word at its beginning. The way I see it, the [! ] should kill finding multiple words, since the space is not allowed. Do I have that right? I must be doing something wrong. Any input would be appreciated. p. |
#6
|
|||
|
|||
![]()
Ignore me! I saw the original post and replied without registering that Jay
had already given virtually the same answer. -- Enjoy, Tony www.WordArticles.com "Tony Jollans" wrote in message ... Spaces are allowed within the "*" bit. You are looking for the anything starting at the beginning of a word (*) followed by a single non-space ([! ]) followed by "dest" at the end of a word. You have found a whole string of stuff followed by "l" (a non-space) followed by "dest". I don't see why you can't just look for wouldest, but what you need to do to the search string you have is make it look for a sequence of non-space characters ... [! ]@dest -- Enjoy, Tony www.WordArticles.com "Paul B." wrote in message ... Hi, I'm running Word '03 on WinXP sp3. I'm trying to catch the word "wouldest" in a multiword selection and convert it to "would". I've got the find/replace dialog open, wildcards checked, all other options cleared, but this Find string: (*)[! ]dest is pulling in the entire selection up to and including the word "wouldest". If I hit Next the selection recedes by one word at its beginning. The way I see it, the [! ] should kill finding multiple words, since the space is not allowed. Do I have that right? I must be doing something wrong. Any input would be appreciated. p. |
#7
|
|||
|
|||
![]()
Thanks to everyone for the answer. That was a very clear explanation,
Jay. The function of the @ had escaped me. I have some Perl RegEx experience, but Word's lingo frequently drives me batty. Graham, the reason I'm trying to do this via Search is that I occasionally want to convert KJV Bible verses to more modern usage, so it's more than a question of the "wouldest" word, and I'm constructing a macro to do it all (besides, I have a KJV dictionary installed, so 'wouldst' isn't flagged in spell check). I could have made that more clear in my post. I'll probably doctor this up to only pick up "est" word endings preceded by certain consonants, in order to avoid false positives. And Tony - sorry, but I refuse to ignore you! ![]() Be well, p. On Jun 15, 8:26*am, Jay Freedman wrote: Sorry, you don't have it right. The [! ] in that expression means only that the single character preceding "dest" must not be a space; but it doesn't restrict any of the characters that come before that. The real cause of your problem, though, is the asterisk. That will match as many characters as possible, including spaces and even paragraph marks. For the task as stated, I don't quite understand why you're using wildcards -- you should be able to search for the specific word "wouldest" and replace it with "would". But if you do want to use wildcards, I'll suggest either of these search terms: [! ]@dest [A-Za-z]@dest The difference is mainly that the first one would match digits and punctuation marks as well as letters. -- Regards, Jay Freedman Microsoft Word MVP * * * *FAQ:http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. On Tue, 15 Jun 2010 04:28:06 -0700 (PDT), "Paul B." wrote: Hi, I'm running Word '03 on WinXP sp3. I'm trying to catch the word "wouldest" in a multiword selection and convert it to "would". I've got the find/replace dialog open, wildcards checked, all other options cleared, but this Find string: (*)[! ]dest is pulling in the entire selection up to and including the word "wouldest". If I hit Next the selection recedes by one word at its beginning. The way I see it, the [! ] should kill finding multiple words, since the space is not allowed. Do I have that right? I must be doing something wrong. Any input would be appreciated. p. |
#8
|
|||
|
|||
![]()
You could turn off your KJV dictionary and that would then allow such words
to be flagged as in error and give you the option to replace all with real words. If you want to stick with searches, then http://www.gmayor.com/replace_using_wildcards.htm will explain the structure -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org "Paul B." wrote in message ... Thanks to everyone for the answer. That was a very clear explanation, Jay. The function of the @ had escaped me. I have some Perl RegEx experience, but Word's lingo frequently drives me batty. Graham, the reason I'm trying to do this via Search is that I occasionally want to convert KJV Bible verses to more modern usage, so it's more than a question of the "wouldest" word, and I'm constructing a macro to do it all (besides, I have a KJV dictionary installed, so 'wouldst' isn't flagged in spell check). I could have made that more clear in my post. I'll probably doctor this up to only pick up "est" word endings preceded by certain consonants, in order to avoid false positives. |
#9
|
|||
|
|||
![]()
Note that a "modern language KJV" has been published -- I don't know
exactly what it's called -- that smooths out the archaic grammatical forms but retains the poetic diction and doesn't correct the mistaken translations, so is there really a need to do this yourself? On Jun 17, 6:50*am, "Paul B." wrote: Thanks to everyone for the answer. That was a very clear explanation, Jay. The function of the @ had escaped me. I have some Perl RegEx experience, but Word's lingo frequently drives me batty. Graham, the reason I'm trying to do this via Search is that I occasionally want to convert KJV Bible verses to more modern usage, so it's more than a question of the "wouldest" word, and I'm constructing a macro to do it all (besides, I have a KJV dictionary installed, so 'wouldst' isn't flagged in spell check). I could have made that more clear in my post. I'll probably doctor this up to only pick up "est" word endings preceded by certain consonants, in order to avoid false positives. And Tony - sorry, but I refuse to ignore you! ![]() Be well, p. On Jun 15, 8:26*am, Jay Freedman wrote: Sorry, you don't have it right. The [! ] in that expression means only that the single character preceding "dest" must not be a space; but it doesn't restrict any of the characters that come before that. The real cause of your problem, though, is the asterisk. That will match as many characters as possible, including spaces and even paragraph marks. For the task as stated, I don't quite understand why you're using wildcards -- you should be able to search for the specific word "wouldest" and replace it with "would". But if you do want to use wildcards, I'll suggest either of these search terms: [! ]@dest [A-Za-z]@dest The difference is mainly that the first one would match digits and punctuation marks as well as letters. -- Regards, Jay Freedman Microsoft Word MVP * * * *FAQ:http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. On Tue, 15 Jun 2010 04:28:06 -0700 (PDT), "Paul B." wrote: Hi, I'm running Word '03 on WinXP sp3. I'm trying to catch the word "wouldest" in a multiword selection and convert it to "would". I've got the find/replace dialog open, wildcards checked, all other options cleared, but this Find string: (*)[! ]dest is pulling in the entire selection up to and including the word "wouldest". If I hit Next the selection recedes by one word at its beginning. The way I see it, the [! ] should kill finding multiple words, since the space is not allowed. Do I have that right? I must be doing something wrong. Any input would be appreciated. |
#10
|
|||
|
|||
![]()
Peter: Yes, there are many updated KJV versions. I seldom use the KJV,
except that I have it electronically with embedded word definitions. But sometimes I have an article in which the quotes are hard to read, so I decided it would be worth it to make a converter. Graham: Since I'm also converting "thee's and thou's and thy's", there's much more to do. And toggling the KJV dictionary would be a nuisance. Paul: Sorry I missed your post first time through. Thanks for your response. p. On Jun 17, 10:43*am, "Peter T. Daniels" wrote: Note that a "modern language KJV" has been published -- I don't know exactly what it's called -- that smooths out the archaic grammatical forms but retains the poetic diction and doesn't correct the mistaken translations, so is there really a need to do this yourself? |
|
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Word Find/Replace Options - wildcards & formatting changes | dd | Microsoft Word Help | 1 | October 16th 09 06:24 AM |
find and replace numbers using wildcards | Andy | Microsoft Word Help | 1 | May 12th 07 07:42 PM |
Word Bug: Find/Replace wildcards while track changes is turned on is buggy | [email protected] | Microsoft Word Help | 2 | February 24th 06 10:35 AM |
Find & Replace--Wildcards | Joe McGuire | Microsoft Word Help | 6 | February 16th 06 10:16 AM |
Find/Replace Wildcards | DeanH | Microsoft Word Help | 2 | August 11th 05 09:44 AM |