Answers for "php remove all whitespace and non alpha symbols from string"

PHP
0

remove symbolsand spaces php

preg_replace('/[^A-Za-z0-9]/', "", $data)
Posted by: Guest on December-14-2020
2

php remove all whitespace from a string

//remove all white spaces from a string
$whatonearth=preg_replace('/s/','',"what o n   ear th");
Posted by: Guest on November-04-2019

Code answers related to "php remove all whitespace and non alpha symbols from string"

Browse Popular Code Answers by Language