Answers for "regex replace all non alphanumeric characters php"

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 "regex replace all non alphanumeric characters php"

Browse Popular Code Answers by Language