Answers for "php regex replace all non alphanumeric characters"

PHP
0

php regex replace all non alphanumeric characters

preg_replace("/[^A-Za-z0-9 ]/", '', $string);
Posted by: Guest on July-30-2021

Code answers related to "php regex replace all non alphanumeric characters"

Browse Popular Code Answers by Language