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

39,411 responses to “Limit the number of newlines in a string”

  1. Ralph Morales Avatar

    I found this very interesting. For more, visit lokaty online .

  2. Adrian Cobb Avatar

    Can we take some time out just appreciate all those small features like deodorizing systems built-in!? It’s little things that make big differences!! # # anyKey word ## Japanese Toilets

  3. Blanche Gomez Avatar

    The advancements in manufacturing techniques for steel fibres can lead to even better product performance—let’s dive deeper into this at Steel Fibres !

  4. Clifford Curry Avatar

    This remodeling plumbing checklist is gold; my contractor from neighborhood plumber Carrollton followed it to a T.

  5. click here Avatar

    Hello there, I found your website by way of Google while searching for
    a similar matter, your web site got here up, it appears great.
    I’ve bookmarked it in my google bookmarks.
    Hi there, simply become aware of your weblog via Google, and located that
    it is really informative. I’m gonna watch out for brussels.
    I’ll be grateful if you happen to proceed this in future.
    A lot of people shall be benefited out of your writing.
    Cheers!

  6. Polly Warren Avatar

    Efficient lock restoration and really good customer service from 24 hour locksmith in Orlando.

  7. Tibetan Mastiff For Sale Newquay Avatar

    These are genuinely fantastic ideas in regarding blogging.
    You have touched some fastidious things here. Any
    way keep up wrinting.

  8. https://casino-online-migliori.org/ Avatar

    What’s up, I would like to subscribe for this webpage to get newest updates, therefore
    where can i do it please help.

  9. Brian Wagner Avatar

    Thanks for the clear breakdown. Find more at piso turístico Arzúa .

  10. fast withdrawal casino Avatar

    If you are going for most excellent contents like myself, simply visit this
    website daily because it gives quality contents, thanks

  11. Maine Coon Kittenss Avatar

    Hello, its pleasant post regarding media print, we all be aware of media is a impressive source of facts.

Leave a Reply

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