Replace a space with a newline every 2 spaces

Replace a space with a newline every 2 spaces

am 22.04.2010 19:29:06 von Paul Halliday

Ex:

"This is the string and it is this long"

This is
the string
and it
is this
long

I found some long functions to achieve this but I couldn't help but
think that it could be done in a couple lines.

Possible?

Thanks.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Replace a space with a newline every 2 spaces

am 22.04.2010 19:56:48 von Andrew Ballard

On Thu, Apr 22, 2010 at 1:29 PM, Paul Halliday wrote:
> Ex:
>
> "This is the string and it is this long"
>
> This is
> the string
> and it
> is this
> long
>
> I found some long functions to achieve this but I couldn't help but
> think that it could be done in a couple lines.
>
> Possible?
>
> Thanks.
>

I'm not sure it's the best method, but it didn't take long to come up with this:


$string = "This is the string and it is this long";

if (preg_match_all('/(?:(?:\w+\s+){2}|(?:\w+$))/', $string, $matches)) {
var_dump($matches[0]);
}


?>

Andrew

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Replace a space with a newline every 2 spaces

am 23.04.2010 03:32:51 von Lupus Michaelis

Le 22/04/2010 19:29, Paul Halliday a écrit :

> I found some long functions to achieve this but I couldn't help but
> think that it could be done in a couple lines.
>
> Possible?

http://us.php.net/manual/en/function.wordwrap.php

--
Mickaël Wolff aka Lupus Michaelis
http://lupusmic.org

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php