Answers for "php string remove spaces and line breaks"

PHP
9

remove space from string php

<?php
$stripped = str_replace(' ', '', "10 1000 0000 000");
echo $stripped;
Posted by: Guest on March-12-2020
0

string remove line breaks php

preg_replace( "/\r|\n/", "", $yourString );
Posted by: Guest on May-18-2020

Code answers related to "php string remove spaces and line breaks"

Browse Popular Code Answers by Language