Evan Lee
Evan Lee

Reputation: 758

php: how to remove starting blanks and new lines

I have a string,

"

     it is a dog"

How to remove the starting blanks and the new lines? The output should be:

"it is a dog"

I have tried preg_replace("/^\s*/ms", "", $string), but not works.

Upvotes: 0

Views: 192

Answers (3)

Nikola
Nikola

Reputation: 15038

Use trim.

examples from 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);

The above example will output:

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"

Upvotes: 2

mewm
mewm

Reputation: 1277

You could try this:

$string = str_replace(array("\r", "\n"), '', trim($string));

Upvotes: 0

Aleph
Aleph

Reputation: 1219

Try ltrim (http://php.net/ltrim).

Upvotes: 2

Related Questions