I am really not good with regular expressions, and the examples I have found do not seam to be working.

I am looking to replace all characters in a string except letters, numbers, spaces and underscores.

Could someone please provide a example?

Thank you

link|improve this question
What examples have you found that don't work? How do they not work? – BoltClock Jun 22 '11 at 15:13
Replace them with what? – Ignacio Vazquez-Abrams Jun 22 '11 at 15:14
I will also add that for string manipulation questions of all sorts, it helps to get the right answer if you provide a concrete example or two of what you would have going into the manipulation and what you would like to have coming out of the manipulation. – EBGreen Jun 22 '11 at 15:15
feedback

3 Answers

up vote 5 down vote accepted

I normally use something like:

$string = preg_replace("/[^ \w]+/", "", $string);

That replaces all non-space and non-word characters with nothing.

link|improve this answer
Worked great, thanks you – Daniel Blackmore Jun 22 '11 at 15:39
@Daniel Blackmore You're welcome. – jeroen Jun 22 '11 at 15:41
feedback

[^0-9a-zA-Z_\s] is what you want to replace.

link|improve this answer
This one helped me on a similar issue. Thanks! (For others reading this, don't forget to wrap it in slashes like this: $new_string=preg_replace('/[^0-9a-zA-Z_]/',"",$old_string) I took out the \s because I didn't need to allow spaces. – TecBrat Apr 18 at 18:39
feedback
<?php
$string = 'April 15, 2003';
$pattern = '/[^\w ]+/';
$replacement = '';
echo preg_replace($pattern, $replacement, $string);
?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.