How can I use PHP to strip out all characters that are NOT alpha, numeric, space, or puncutation?
I've tried the following, but it strip punctuation.
preg_replace("/[^a-zA-Z0-9\s]/", "", $str);
|
|
Example:
|
|||||||||||
|
|
You're going to have to list the punctuation explicitly as there is no shorthand for that (eg
|
|||
|
|
Hope this helps. |
||||
|
|