vote up 1 vote down star

Hi guys,

I have a VBA Word Macro that gets words from .txt list and color highlight them in a word .doc document.

The problem is that the script ignores whitespaces and wildcards from the .txt list. I insert the word "wit" but it also changes words like witHIN , witCHE, etc.

I tried inserting wildcards in the .txt file, like or using white spaces like " wit ", but it didnt worked. The script ignore the whitespaces and the wildcards.

THE CODE IS HERE: http://pastebin.com/m3e20f932

Melissa.

flag
1  
Thanks for linking to the code, BTW. – cori Nov 6 at 0:51

2 Answers

vote up 1 vote down check

Maybe you need to add the option .matchWholeWord = True to line 233? If you would rather do it by using whitespace, you could remove the Trim on line 63. If you want to use wildcards, you would need to have .MatchWildcards = True on line 233.

link|flag
Kinopiko i tried removing the TRIM and also worked, thanks. But when i tried adding .MatchWildcards = True, and then went to the txt file and inserted <wit> it worked, but instead of replacing every wit word for wit, replaced with <wit>. Why that happened ? Thanks again guys. – Melissa McRoe Nov 6 at 0:59
vote up 0 vote down

You might try adding the MatchWholeWord:=True property to your Execute statement.

Untested, but I believe that will give you the results you want.

link|flag
Hi Cori, i tried MatchWholeWord=True and it worked, thanks! – Melissa McRoe Nov 6 at 0:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.