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

38,856 responses to “Limit the number of newlines in a string”

  1. 789win Avatar

    Hello, just wanted to mention, I liked this article.

    It was inspiring. Keep on posting!

  2. Earl Barrett Avatar

    Atlanta mates, what’s been your enjoy with a most well known med spa in Atlanta for anti-getting old treatment plans? I’m extraordinarily considering consultative techniques and protected, demonstrated technologies https://www.google.com/maps?ll=33.857108,-84.481352&z=16&t=m&hl=en&gl=US&mapclient=embed&cid=9724461458374317305

  3. postnatal massage Avatar

    Women and men in the present day would like to realize further in relation to any of these subjects, even though there seems to in no way be a lot of free time.
    After available free time for family, and obviously doing work, just what time frame is left over to allocate to studying these types of most vital teachings?
    Being an individual employing post-partum massage, and in addition constructing sites and administering quite a few machines, time is undeniably a
    commodity which i do not possess more than enough
    of. With luck, I will be capable of finding the occasion required to master this crucial situation more honestly.
    Thanks to you for presenting this specific fantastic website.

  4. teen patti joy game Avatar

    This is my first time visit at here and i am truly impressed to read everthing at alone place.

    Here is my page: teen patti joy game

  5. wedding flower ideas Avatar

    I was able to find good information from your articles.

  6. Anne Ford Avatar

    Surge protection for sensitive electronics is worth it. Frisco electrical repairs installed a panel-mounted protector.

Leave a Reply

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