View Single Post
 
Old 11-06-2014, 02:24 PM
foxtrot foxtrot is offline Windows XP Office 2003
Novice
 
Join Date: Aug 2009
Posts: 8
foxtrot is on a distinguished road
Default

Quote:
Originally Posted by macropod View Post
You could use:
Find = [!0-9].[0-9]%
Note that this finds the non-numeric character before the .0% as well. So, if the aim is to delete the .0%, you'd use:
Find = ([!0-9]).[0-9]%
Replace = \1
That doesn't find anything. For example, if you list in Word those four sample values I provided and do a find for [!0-9].[0-9]% it says "... The search item was not found."
Reply With Quote