![]() |
|
#2
|
|||
|
|||
|
I don't think you can use{3} for your needs. I can't answer your exact question but I use this macro for finding strings that aren't always know.
Code:
Sub WhereIsIt()
a1 = "[0-9A-z] "
B2 = "Z[0-9A-z]Z"
ActiveDocument.Range(0).Select
Selection.Find.ClearFormatting
While Selection.Find.Execute(a1)
StartReformat = Selection.Start
Selection.MoveRight
Selection.Find.Execute (B2)
StopReformat = Selection.End
Selection.MoveRight
Selection.Select
Selection.Font.Color = 255
Selection.Font.Bold = True
Selection.Font.Size = 20
Wend
End Sub
|
| Tags |
| wildcard searches |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Having problems with a Wildcard search
|
Cosmo | Word VBA | 9 | 02-12-2016 08:03 PM |
| Change characters outside a wildcard while keeping wildcard results | nymusicman | Word VBA | 2 | 04-10-2014 08:17 AM |
| 2013 search results take a long time - they fill in as results in reverse date order | themookman | Outlook | 0 | 10-11-2013 12:01 PM |
Saving search results in word 2010
|
swami | Word | 2 | 09-04-2013 11:34 PM |
| Wildcard search help. | Kempston | Word | 0 | 11-13-2009 03:58 AM |