Page 1 of 1

Delete all alpha characters EXCEPT numeric (numbers)

Posted: Tue Nov 15, 2011 11:20 pm
by dmac
I want to delete all the alpha characters, but leave the numeric chars only.
Is this possible?

Many thanks,
Darren.

Posted: Wed Nov 16, 2011 4:29 am
by ak47wong
Perform a Replace operation with these parameters:

Find what: [^0-9]
Replace with: (nothing)
Select Regular expression
Click Replace All

Posted: Wed Nov 16, 2011 10:01 am
by dmac
Thanks for this ak,
Much appreciated!