I'd like a regexp or other string which can replace everything except alphanumeric chars (a-z
and 0-9
) from a string. All things such as ,@#$(@*810
should be stripped. Any ideas?
Edit: I now need this to strip everything but allow dots, so everything but a-z, 1-9, .
. Ideas?