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

21,306 responses to “Limit the number of newlines in a string”

  1. the christ Avatar

    Everything is very open with a very clear clarification of the issues.
    It was definitely informative. Your website is useful.
    Thank you for sharing!

  2. antara babi Avatar

    First of all I want to say fantastic blog! I had a
    quick question in which I’d like to ask if you don’t mind.
    I was curious to know how you center yourself and clear your mind
    before writing. I have had a tough time clearing my thoughts in getting my ideas
    out there. I truly do take pleasure in writing but it just seems like
    the first 10 to 15 minutes tend to be wasted just trying to
    figure out how to begin. Any recommendations or hints? Many thanks!

  3. sports jerseys Avatar

    Wow, marvelous blog layout! How long have you been blogging for?

    you make blogging look easy. The overall look of your website is great, let alone the content!

  4. rape child Avatar

    It’s actually a cool and helpful piece of info.
    I am glad that you shared this useful info with us.
    Please keep us up to date like this. Thank you for sharing.

  5. platforma binance Avatar

    Write more, thats all I have to say. Literally, it seems as though
    you relied on the video to make your point. You definitely know what youre talking about, why throw away your intelligence on just posting videos to your
    blog when you could be giving us something enlightening to read?

  6. Scarface Trades Discord Avatar

    Nice post. I learn something totally new and challenging on blogs I
    stumbleupon everyday. It’s always interesting to read articles from
    other writers and practice something from other web sites.

Leave a Reply

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