I need to remove all characters from a string which aren't in a-z A-Z 0-9 set or are not spaces.
a-z A-Z 0-9
Does anyone have a function to do this?
Sounds like you almost knew what you wanted to do already, you basically defined it as a regex.
preg_replace("/[^A-Za-z0-9 ]/", '', $string);
2.1m questions
2.1m answers
60 comments
57.0k users