Answers for "php remove non alphanumeric characters except spaces"

PHP
1

php remove non alphanumeric

$alphanumericString=preg_replace("/[^A-Za-z0-9 ]/", '', $whoKnowsString);
Posted by: Guest on August-06-2021
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 remove non alphanumeric characters except spaces"

Browse Popular Code Answers by Language