:
preg_replace('#[^a-zA-Z0-9 ]#', '', $yourString);
, , .
:
$yourString = 'This is, ,,, *&% a ::; demo + String. + Need to**@!/// format::::: !!! this.`';
$newStr = preg_replace('#[^a-zA-Z0-9 ]#', '', $yourString);
echo $newStr;
:
This is a demo String Need to format this
, , , :
[^a-zA-Z0-9 ]
. , ( ), :
preg_replace('#[^a-zA-Z0-9]+#', ' ', $yourString);