Answers for "php replace all non alphanumeric characters and spaces"

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 replace all non alphanumeric characters and spaces"

Browse Popular Code Answers by Language