删除多个空白空间

我从MySQL数据库中获得$row['message'],我需要删除所有空白,如\n \t等。

$row['message'] = "This is   a Text \n and so on \t     Text text.";

应格式化为:

$row['message'] = 'This is a Text and so on Text text.';

我试着:

 $ro = preg_replace('/\s\s+/', ' ',$row['message']);
echo $ro;

但它不会删除\n\t,只删除单个空格。有人能告诉我怎么做吗?

265598 次浏览

你需要:

$ro = preg_replace('/\s+/', ' ', $row['message']);

您正在使用\s\s+,这意味着空格(空格,制表符或换行符)后面跟着一个或多个空格。这实际上意味着用一个空格替换两个或多个空格。

你想要的是用单个空格替换一个或多个空格,所以你可以使用模式\s\s*\s+(推荐)

$str='This is   a Text \n and so on Text text.';
print preg_replace("/[[:blank:]]+/"," ",$str);

我不能在这里重复这个问题:

$x = "this    \n \t\t \n    works.";
var_dump(preg_replace('/\s\s+/', ' ', $x));
// string(11) "this works."

我不确定这是否只是一个转录错误,但在您的示例中,您使用的是单引号字符串。如果你有一个双引号字符串,\n\t只被当作换行符和制表符。那就是:

'\n\t' != "\n\t"

编辑:正如Codaddict指出的那样,\s\s+不会替换单个制表符。我仍然不认为使用\s+是一个有效的解决方案,所以这样如何:

preg_replace('/(?:\s\s+|\n|\t)/', ' ', $x);
<?php
$str = "This is  a string       with
spaces, tabs and newlines present";


$stripped = preg_replace(array('/\s{2,}/', '/[\t\n]/'), ' ', $str);


echo $str;
echo "\n---\n";
echo "$stripped";
?>

这个输出

This is  a string   with
spaces, tabs and newlines present
---
This is a string with spaces, tabs and newlines present

你所需要的就是像下面这样运行它:

echo preg_replace('/\s{2,}/', ' ', "This is   a Text \n and so on \t     Text text."); // This is a Text and so on Text text.
preg_replace('/(\s\s+|\t|\n)/', ' ', $row['message']);

这将用一个空格替换所有制表符、换行符以及多个空格、制表符和换行符的所有组合。

这是我要用的:

a.确保使用双引号,例如:

$row['message'] = "This is   a Text \n and so on \t     Text text.";

b.删除多余的空白,使用:

$ro = preg_replace('/\s+/', ' ', $row['message']);
echo $ro;

它可能不是最快的解决方案,但我认为它需要最少的代码,而且应该可以工作。不过,我从未使用过mysql,所以我可能是错的。

<?php
#This should help some newbies
# REGEX NOTES FROM DANUEL
# I wrote these functions for my own php framework
# Feel Free to make it better
# If it gets more complicated than this. You need to do more software engineering/logic.
# (.)  // capture any character
# \1   // if it is followed by itself
# +    // one or more


class whitespace{


static function remove_doublewhitespace($s = null){
return  $ret = preg_replace('/([\s])\1+/', ' ', $s);
}


static function remove_whitespace($s = null){
return $ret = preg_replace('/[\s]+/', '', $s );
}


static function remove_whitespace_feed( $s = null){
return $ret = preg_replace('/[\t\n\r\0\x0B]/', '', $s);
}


static function smart_clean($s = null){
return $ret = trim( self::remove_doublewhitespace( self::remove_whitespace_feed($s) ) );
}
}
$string = " Hey   yo, what's \t\n\tthe sc\r\nen\n\tario! \n";
echo whitespace::smart_clean($string);

我使用以下代码和模式:

preg_replace('/\\s+/', ' ',$data)


$data = 'This is   a Text
and so on         Text text on multiple lines and with        whitespaces';
$data= preg_replace('/\\s+/', ' ',$data);
echo $data;

你可以在http://writecodeonline.com/php/上测试这个

preg_replace('/[\s]+/mu', ' ', $var);

\s已经包含制表符和新行,所以上面的正则表达式似乎足够了。

说实话,如果你想要这样的东西

preg_replace('/\n+|\t+|\s+/',' ',$string);

这将用一个选项卡替换多个选项卡

preg_replace("/\s{2,}/", "\t", $string);

没有preg_replace ()

$str = "This is   a Text \n and so on \t     Text text.";
$str = str_replace(["\r", "\n", "\t"], " ", $str);
while (strpos($str, "  ") !== false)
{
$str = str_replace("  ", " ", $str);
}
echo $str;

简化为一个函数:

function removeWhiteSpace($text)
{
$text = preg_replace('/[\t\n\r\0\x0B]/', '', $text);
$text = preg_replace('/([\s])\1+/', ' ', $text);
$text = trim($text);
return $text;
}

基于丹尼尔·奥尼尔的答案。

没有preg_replace,在loop的帮助下。

<?php


$str = "This is   a Text  and so on      Text text.";
$str_length = strlen($str);
$str_arr = str_split($str);
for ($i = 0; $i < $str_length; $i++) {
if (isset($str_arr[$i + 1])
&& $str_arr[$i] == ' '
&& $str_arr[$i] == $str_arr[$i + 1]) {
unset($str_arr[$i]);
}
else {
continue;
}
}


echo implode("", $str_arr) ;


?>