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: Cleaning Up Text in a Macro.
Written by Allen Wyatt (last updated December 3, 2020)
This tip applies to Word 97, 2000, 2002, and 2003
There have been many macros that I have written with the express purpose of "cleaning up" text prior to doing something else with it. For instance, inserting it in a new document or saving it in a text file. Often this process is tedious, involving examining each character in a text string and then making some decision as to what to do with it if the character is not within a range of acceptable characters.
VBA includes an interesting method that can be used to help clean up text. It is called, appropriately enough, the CleanString method. You use it as shown here:
sCleanedUp = Application.CleanString(Selection.Text)
This instance sets the sCleanedUp string equal to a "cleaned up" version of the selected text. What exactly does the CleanString method do? It removes non-printing characters in the ANSI range of 1 through 29, with the exception of 7, 9, 10, and 13. In the case of ANSI character 7, it is removed unless it is preceded by character 13, in which case it is replaced with a tab (ANSI 9). In the case of ANSI character 10, it is replaced with character 13 unless preceded by character 13, in which case it is removed. Characters 9 and 13 are not changed.
A number of other characters outside the range of 1 through 29 are also affected by the CleanString method. ANSI character 31 (the optional hyphen), character 172 (also an optional hyphen), and character 182 (the paragraph mark character) are all removed. ANSI character 160 (the non-breaking space), character 176 (another non-breaking space), and character 183 (a bullet character) are each replaced with spaces. All other characters are unchanged.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1460) 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: Cleaning Up Text in a Macro.
Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2013. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word 2013 Step by Step today!
When creating macros, you often need to convert a text string that contains numbers into actual numeric values. You do ...
Discover MoreYou can make running macros very easy if you assign a shortcut key to the macro. This tip demonstrates how easy it is to ...
Discover MoreUnderstanding Word's Object Model and how it relates to macros in VBA.
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