Answers for "remove whitespace and special characters php"

PHP
2

remove every whitespace php

$string = preg_replace('/\s+/', '', $string);
Posted by: Guest on May-29-2020
0

remove symbolsand spaces php

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

Code answers related to "remove whitespace and special characters php"

Browse Popular Code Answers by Language