withoutSpaces

This method removes all spaces from the string, keeping all other characters intact.

Usage

$string = 'Hello world';
$string = SM::withoutSpaces($string);
// or
$string = SM::make($string)
    ->withoutSpaces();
echo $string; // Helloworld