Answers for "replace everything but alphanumeric and spaces 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 "replace everything but alphanumeric and spaces php"

Browse Popular Code Answers by Language