Answers for "remove spaces form string php"

PHP
0

remove every whitespace php

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

remove all spaces php

$string = "this is my     string"
$string = preg_replace('/\s+/', '', $string);
Posted by: Guest on October-02-2020

Code answers related to "remove spaces form string php"

Browse Popular Code Answers by Language