$string="This is testing para";
$string_withoue_whitespace=trim($string," ");
我的预期输出为Thisismypara
,但未删除 whites 空格。
如何删除php中某段内的 white 空格
答案 0 :(得分:2)
$string_without_whitespaces = str_replace(' ', '', $string);
改为使用str_replace()。
此外,如果您不确定只有空格,但其他一些不可打印的字符,看起来像空格 - 您还可以使用preg_replace():
$string_without_whitespaces = preg_replace('~\s~', '', $string);
答案 1 :(得分:2)
$string = "This is testing para";
$new_string = preg_replace('/( *)/','',$string);
echo $new_string;
或
$string = "This is testing para";
$new_string = str_replace(' ','',$string);
echo $new_string;