php去除多余空格的方法:首先创建一个PHP示例文件;然后使用语句“preg_replace('/\s(?=\S)/','',$str);”去除指定字符串中多余的空格即可。
推荐:《PHP视频教程》
PHP去除多余空格 多个连续空格只保留一个
/** * 多个连续空格只保留一个 * * @param string $string 待转换的字符串 * @return unknown */ static public function merge_spaces ( $string ) { return preg_replace ( "/\s(?=\s)/","\\1", $string ); }
出处:http://www.open-open.com/code/view/1420711244390 //Delphi有一个函数可以将多余的字符串替换一次,保留其中一个。php就复杂多了,而且我对正则也不是太了解。
代码经我修改后,达到了我想要的目的:除两个连续空格外,其它的单个不连续空格均被替换。
The above is the detailed content of How to remove extra spaces in php. For more information, please follow other related articles on the PHP Chinese website!