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 に答える