From: Paul Halliday on
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.
From: Andrew Ballard on
On Thu, Apr 22, 2010 at 1:29 PM, Paul Halliday <paul.halliday(a)gmail.com> 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:

<?php

$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
From: Lupus Michaelis on
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
 | 
Pages: 1
Prev: Math Question....
Next: PHP can't find OCI.dll