Answers for "php strip all tabs and spaces"

PHP
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 "php strip all tabs and spaces"

Browse Popular Code Answers by Language