前端之家收集整理的这篇文章主要介绍了
PHP中用正则表达式清除字符串的空白,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果您想要去掉字符串开始和结束的空白可以使用PHP内部函数trim() 。但是,我们经常想完全清除空白。需要把开始和结束的空白清除掉,将多个空白变为一个空白,使用一个规则来处理同样的类型的其它空白。 完成这些可以使用PHP的正则表达式来完成 下例可以去除额外Whitespace
<div class="codetitle"><a style="CURSOR: pointer" data="24462" class="copybut" id="copybut24462" onclick="doCopy('code24462')"> 代码如下:
$str = " This line contains\tliberal \r\n use of whitespace.\n\n"; // First remove the leading/trailing whitespace
$str = preg_replace('/\s(?=\s)/','',$str); // Finally,replace any non-space whitespace,with a space
$str = preg_replace('/[\n\r\t]/',' ',$str); // Echo out: 'This line contains liberal use of whitespace.'