Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Finding Quoted Text in VBA.

Finding Quoted Text in VBA

Written by Allen Wyatt (last updated June 25, 2018)
This tip applies to Word 97, 2000, 2002, and 2003


1

Jennifer needs a way, in a macro, to find a string surrounded by either smart or straight quotes (or a mix of the two). She can't seem to find the proper mix of commands for the Find method to locate all instances of such text in all versions of Word.

It is important to be clear about what is being searched. The assumption in this tip is that your macro requires to you search for a specific string surrounded by quotes, not any string surrounded by quotes. For example, in a document that contains two quoted strings such as "my quoted text" and "more quoted text," you only want to find one of the strings for which you know the text, ahead of time, not both of the strings.

In this case, it is just fine to use the Find method, as you note. The question is how to accommodate the possibility of both smart quotes and straight quotes in what you seek. Fortunately, the Find method, by default, matches both straight and smart quotes interchangeably. The key point is knowing how to specify that you want the quote marks included in the search. The following code snippet should do the trick:

Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
    .Text = """my quoted text"""
    .Format = False
    .MatchWildcards = False
End With
Selection.Find.Execute

The key in this code is how information is assigned to the .Text property. Note that whatever you are searching for (in this case, "my quoted text") is surrounded by three quotes on each side. The reason for this is rather arcane: The string you are searching for must be enclosed with quote marks; this is required by VBA. This is shown here:

"my quoted text"

Since you want an actual quote character at the beginning of what you are seeking, you need to include a second quote mark as a "delimiter" to indicate you want to find the quote mark character. This means there are now three quote marks at the beginning:

"""my quoted text"

The same extra-quote-mark-as-delimiter technique also applies to the end of the string, so you end up with what is shown in the code snippet. When the code is executed, Word dutifully finds the string, surrounded by any mix of straight or smart quotes, as desired.

It should also be noted that this approach only works if you are doing a regular search, with the .MatchWildcards property set to False.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (11638) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Finding Quoted Text in VBA.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Measuring Efficiency of Formulas and Macros

As the limits on what you can store in Excel have increased, so has the need to consider how to make your workbooks and ...

Discover More

Microsoft Excel VBA Guidebook

Creating Excel macros allows you to extend your productivity with Excel. Visual Basic for Applications (VBA) is the ...

Discover More

Continuing Macro Lines

Program a macro, and you can easily find that some lines get very long. If you want to shorten the lines so they are more ...

Discover More

The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2013. Spend more time working and less time trying to figure it all out! Check out Word 2013 For Dummies today!

More WordTips (menu)

Selective Formatting in Searches

Need to search for text that has different formatting within the search term? Word can't handle something this complex, ...

Discover More

Replacing an X with a Check Mark

In order to provide a finishing touch to your document, you may want to replace mundane X marks with fancier check marks. ...

Discover More

Adding Many No-Width Optional Breaks

One of the special characters you can add in a document is the no-width optional break. Although originally designed for ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is nine minus 5?

2021-08-23 22:31:43

Christine

my understanding that this works only if you know what the text is that you are looking for. I want to find all strings that have matching quotes to apply a quote style, how would I do that


This Site

Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.