Answers for "php remove double spaces"

PHP
0

remove double space php

$ro = preg_replace('/\s+/', ' ',$row['message']);
Posted by: Guest on September-17-2020
0

remove all spaces php

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

php remove all whitespace from a string

$string = "this is my     string"
$string = preg_replace('/\s+/', '', $string);
Posted by: Guest on November-04-2019

Browse Popular Code Answers by Language