0

我有一个字符串,

"

     it is a dog"

如何删除起始空白和新行?输出应该是:

"it is a dog"

我试过了preg_replace("/^\s*/ms", "", $string),但不起作用。

4

3 回答 3

2

试试 ltrim (http://php.net/ltrim )。

于 2012-09-08T11:15:51.470 回答
2

使用修剪

来自php.net的示例:

$text   = "\t\tThese are a few words :) ...  ";
$binary = "\x09Example string\x0A";
$hello  = "Hello World";
var_dump($text, $binary, $hello);

print "\n";

$trimmed = trim($text);
var_dump($trimmed);

$trimmed = trim($text, " \t.");
var_dump($trimmed);

$trimmed = trim($hello, "Hdle");
var_dump($trimmed);

$trimmed = trim($hello, 'HdWr');
var_dump($trimmed);

// trim the ASCII control characters at the beginning and end of $binary
// (from 0 to 31 inclusive)
$clean = trim($binary, "\x00..\x1F");
var_dump($clean);

上面的示例将输出:

string(32) "        These are a few words :) ...  "
string(16) "    Example string
"
string(11) "Hello World"

string(28) "These are a few words :) ..."
string(24) "These are a few words :)"
string(5) "o Wor"
string(9) "ello Worl"
string(14) "Example string"
于 2012-09-08T11:18:11.853 回答
0

你可以试试这个:

$string = str_replace(array("\r", "\n"), '', trim($string));
于 2012-09-08T11:16:49.160 回答