Re: regex for multiple line breakes

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



You are replacing 1 or more matchs of a new line. To match 2 or more you can use "{2,}". It's a range, first number means min matches, second max matches. Omitting last number means no max limit.

$data[txt] = preg_replace('`[\r\n]{2,}`',"\n",$data[txt]);



________________________________
De: Merlin Morgenstern <merlin_x@xxxxxxxxxxx>
Para: php-general@xxxxxxxxxxxxx
Enviado: mié,14 octubre, 2009 12:17
Asunto:  regex for multiple line breakes

Hi there,

I am trying to remove multiple linebreakes from a textarea input. Spammers tend to insert multiple line breakes. The problem is, that I want to allow 2 line breaks so basic formating should be allowed.

I am doing this by regex:
$data[txt] = preg_replace('`[\r\n]+`',"\n",$data[txt]);

I would need a regex that allows \r\n\r\n, but not more than this.

Thank you for any help,

Merlin

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


      

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux