![]() |
#1
|
|||
|
|||
![]()
A few years ago I recorded this macro, which is designed to identify irregular characters in a document.
Code:
With Selection.Find .ClearFormatting .Replacement.ClearFormatting .Text = "[!\!-\],_,a-z,§,¶,\, ,^13,^m,^l,^s,^=,^+,^t,^-,“,”,‘,’,^2]" .Replacement.Text = "" .Forward = True .Wrap = wdFindContinue .Format = False .MatchCase = False .MatchWholeWord = False .MatchAllWordForms = False .MatchSoundsLike = False .MatchWildcards = True .Execute End With It works well for our purposes. However, I would like to improve it in two ways. First, I would like the macro to first look in the main body of the document for irregular characters, then cycle through the footnotes. Right now, it only cycles through the document part where it begins. Second, I would like macro to also ignore some other characters like m-spaces ChrW(8195) and n-spaces ChrW(8194). It currently stops on those characters as well. Any ideas? Thank you for your help. Last edited by macropod; 05-08-2013 at 03:21 PM. Reason: Added code tags & formatting |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How do I turn off newline characters | GraeagleBill | Word | 3 | 12-18-2012 11:35 PM |
![]() |
monique | Word | 1 | 08-30-2012 05:33 AM |
Junk characters (box-like characters) in Word file | Sashikala | Word | 1 | 04-20-2010 02:03 PM |
escape characters | LadyReader | Word VBA | 0 | 09-06-2006 12:09 PM |
Identifying the Dynamic Connector | cyberbhai | Misc | 0 | 12-14-2005 03:55 AM |