Limit the number of newlines in a string

A very short blog post this time. I often use the following short function to limit the number of breaks/newlines in comments that people can submit on a news article or other user input. You can easily limit the number of characters in a comment by using the PHP strlen function, but the comment can still use a lot of vertical space on your website if the user uses 5 breaks in his comment. See the function below to prevent this type of comments:

/**
 * limitBreaks, prevents texts with a lot of enters/breaks after each other
 *
 * @param string $sText
 * @param int $iAmount default 2, numbers of newlines that may occur after eachother
 * @return string, cleaned up string with limited number of newlines
 */
function limitBreaks($sText, $iAmount=2)
{
	return preg_replace("/[\r\n]{".($iAmount+1).",}\t*[\r\n]*/", str_repeat(PHP_EOL, $iAmount), $sText);
}

As you can see a simple but effective function.

Comments

23,454 responses to “Limit the number of newlines in a string”

  1. 비아그라 Avatar

    Does your website have a contact page? I’m having a tough time locating it but, I’d like to shoot you an e-mail.
    I’ve got some creative ideas for your blog you might be interested in hearing.
    Either way, great website and I look forward to seeing it
    improve over time.

  2. please visit Avatar

    What’s Taking place i’m new to this, I stumbled upon this I have found
    It positively useful and it has helped me out loads.
    I hope to contribute & help other users like its aided me.

    Great job.

  3. Pink gelatin trick Avatar

    PINK GELATIN TRICK RECIPE ONLY (VERY EASY TO DO) MIX PINK GELATIN WITH ICE SEE WHAT HAPPENS

    The Pink Gelatin Trick Recipe is becoming one of the
    most searched viral wellness trends online. In this video, we show the very easy pink gelatin trick
    recipe that many people are trying at home. The method is simple: mix pink gelatin with ice and follow the
    preparation steps shown in this video.

    Many people are searching for the pink gelatin trick recipe because it’s simple, affordable, and easy to prepare.
    This viral gelatin method is often discussed in wellness communities as a routine that focuses on hydration, fullness,
    and simple ingredients.

  4. Home - BJ88 DA GA THOMO Avatar

    Đá Gà Thomo 88 Hướng dẫn chọn đá gà trực tiếp Thomo BJ88 phù hợp với mục đích cá cược của bạn Chúng tôi sẽ cung cấp thông tin chi tiết về cách
    xem đá gà trực tiếp, cách đặt cược và cơ hội để giành chiến thắng lớn.
    Hãy cùng chúng tôi khám phá.

Leave a Reply

Your email address will not be published. Required fields are marked *