Quote:
Originally Posted by macropod
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."