11

我有一个带有多个换行符的字符串。

字符串:

This is         a dummy text.               I need              




to                                      format
this.

期望的输出:

This is a dummy text. I need to format this.

我正在使用这个:

$replacer  = array("\r\n", "\n", "\r", "\t", "  ");
$string = str_replace($replacer, "", $string);

但它没有按预期/要求工作。有些单词之间没有空格。

实际上我需要用单个空格分隔的所有单词转换字符串。

4

1 回答 1

22

我鼓励你使用preg_replace

# string(45) "This is a dummy text . I need to format this."
$str = preg_replace( "/\s+/", " ", $str );

演示:http ://codepad.org/no6zs3oo

您可能已经在" . "第一个示例的部分中注意到了。紧跟标点符号的空格可能应该完全删除。快速修改允许这样做:

$patterns = array("/\s+/", "/\s([?.!])/");
$replacer = array(" ","$1");

# string(44) "This is a dummy text. I need to format this."
$str = preg_replace( $patterns, $replacer, $str );

演示:http ://codepad.org/ZTX0CAGD

于 2012-05-30T05:02:16.163 回答