how to clear 2 or more space on the quote?
for example
$str = 'this is my test, "clean my spaces " thank you';i want change this string to:
this is my test, "clean my spaces " thank you'
this is my php code
$str = preg_replace('/\s\s+/', ' ', $str);
echo $str;
but this code clear all space, i want clear only in " "
thank you


Sign In
Create Account


Back to top









