views:

625

answers:

4

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?

+2  A: 
/[^a-z0-9.]/

should do the trick

SilentGhost
How can i change that to allow only dots (i.e .)?
Click Upvote
@ Click Upvote: `[^.]`
Gumbo
Full reg exp please? I don't know the syntax
Click Upvote
+1  A: 

Try:

$string = preg_replace ('/[^a-z0-9]/i', '', $string);

/i stands for case insensitivity (if you need it, of course).

Ilya Birman
+9  A: 
$string = preg_replace("/[^a-z0-9.]+/i", "", $string);

Matches one or more characters not a-z 0-9 [case-insensitive], or "." and replaces with ""

gnarf
How can i change that to allow only dots (i.e .)?
Click Upvote
Adjusted to also include "."
gnarf
You don’t need to escape the dot inside the character set.
Gumbo
@gumbo - thanks learned something myself from this one :)
gnarf
+7  A: 

I like using [^[:alnum:]] for this, less room for error.

preg_replace('/[^[:alnum:]]/', '', "(ABC)-[123]"); // returns 'ABC123'
Corban Brook