Answers for "remove double space php"

PHP
0

remove double space php

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

remove all spaces php

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

Browse Popular Code Answers by Language