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: Replacing Spaces in Part Numbers with Dashes.
Written by Allen Wyatt (last updated November 11, 2023)
This tip applies to Word 97, 2000, 2002, and 2003
Terry has a document that contains a lot of numeric data. Often, the document has part numbers with spaces in them, such as "422 891A." Terry needs a way to search through the document and find any "digit-space-digit" sequence and replace it with "digit-dash-digit." For instance, "422 891A" would be changed to "422-891A." Terry wonders if there is a way to do this with Find and Replace.
This type of find-and-replace operation can be done quite easily by using the wildcard searching built into Word. Here's the quick version:
That's it. When the Use Wildcards check box is selected (in step 3), Word allows you to use patterns in the search. In this case, each instance of [0-9] means "match any single digit in the range of 0 through 9." The parentheses around each instance is for grouping purposes that allows what is found within that group to be referenced in the Replace With box. So, essentially, the Find What pattern matches any single digit followed by a space followed by any single digit.
What is then entered in the Replace With box is a set of references to what was found. The \1 and \2 indicators mean "what was found in the first set of parentheses and what was found in the second set of parentheses." So, this means "replace the first digit with itself, followed by a dash, then replace the second digit with itself."
Of course, you may need to get even more specific in the pattern you search for, if it is possible that the digit-space-digit pattern may appear in other places in the document and you don't want them affected. In that case, perhaps your part-number pattern consists of three digits followed by a space and then three more digits and then a single alphabetic character, as shown in the example provided at the first of this tip. If that is the case, then you can search for the following in step 4:
([0-9]{3}) ([0-9]{3})([A-Z])
In this case, you'll immediately note the addition of two instances of {3}. These characters are an indicator that there needs to be three of whatever immediately precedes the indicator. Thus, there needs to be three digits, each of 0 through 9. Also, the [A-Z] characters matches a single capital letter in the range of A through Z.
Also note that there are three sets of parentheses in this Find What pattern. These then can be referenced in the Replace With box (step 5), as follows:
\1-\2\3
Since this search is more specific, there is very little chance that you will replace spaces with dashes where you didn't mean to do a replacement.
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (10834) 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: Replacing Spaces in Part Numbers with Dashes.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
Pattern matching is a type of searching you can do in Word that is very powerful. Despite its power, it remains rather ...
Discover MoreThe Find and Replace capabilities of Word are, simply, quite astounding. This is particularly true when using wildcard ...
Discover MoreSometimes you'll run across the need to replace a very specific sequence of characters in your document. It is for these ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments