How do I remove extra line breaks beyond two?

This is a discussion on How do I remove extra line breaks beyond two? within the PHP Language forums, part of the PHP Programming Forums category; Hello - What is the correct expression to remove any extra line breaks beyond two in a string? Sincerely, Jim...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-25-2005
revjjjames@hotmail.com
 
Posts: n/a
Default How do I remove extra line breaks beyond two?

Hello -

What is the correct expression to remove any extra line breaks beyond
two in a string?

Sincerely,

Jim

Reply With Quote
  #2 (permalink)  
Old 02-26-2005
Andy Hassall
 
Posts: n/a
Default Re: How do I remove extra line breaks beyond two?

On 25 Feb 2005 15:25:17 -0800, revjjjames@hotmail.com wrote:

>What is the correct expression to remove any extra line breaks beyond
>two in a string?


There any may ways but I'd probably use something like:

$string = preg_replace('/(?<=\n)(\n?)\n*/s', "$1", $string);

--
Andy Hassall / <andy@andyh.co.uk> / <http://www.andyh.co.uk>
<http://www.andyhsoftware.co.uk/space> Space: disk usage analysis tool
Reply With Quote
  #3 (permalink)  
Old 02-26-2005
Chung Leong
 
Posts: n/a
Default Re: How do I remove extra line breaks beyond two?

<revjjjames@hotmail.com> wrote in message
news:1109373917.583770.16760@g14g2000cwa.googlegro ups.com...
> Hello -
>
> What is the correct expression to remove any extra line breaks beyond
> two in a string?
>
> Sincerely,
>
> Jim
>


The simpliest way is to replace linebreaks of three or more with two. Ugly
regexp:

preg_replace('/(?:(?:\r\n)|\r|\n){3,}/', "\n\n", $str);


Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 12:37 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0