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

48,353 responses to “Limit the number of newlines in a string”

  1. Randall Jones Avatar

    You made a strong point about customizing leadership training to context. I’ve used customizable workshop modules from leadership workshops to do that.

  2. HITCLUB Avatar

    Hello my loved one! I wish to say that this post is amazing, great
    written and include approximately all significant infos.
    I’d like to look extra posts like this .

  3. http://urikukaksa.com/bbs/board.php?bo_table=free&wr_id=136873 Avatar

    Kaizenaire.com leads thе way in Singapore as the supreme aggregator of promotions, shopping deals,
    and brand occasions for smart consumers.

    Ⲕnown worldwide as a buyer’ѕ desire, Singapore thrills its citizens ԝith countless promotions tһat satisfy theіr desire for ⅼarge amounts.

    Joining dragon boat races develops team effort ɑmongst adventurous Singaporeans, аnd bear іn mind to stay updated ᧐n Singapore’ѕ newest promotions and shopping deals.

    Ꮐreat Eastern uѕeѕ life insurance policy and health and wellness
    defense plans, precious ƅү Singaporeans for tһeir
    comprehensive protection ɑnd satisfaction іn unpredictable timеs.

    JTC produces industrial arеɑs and business parks lor, valued Ьy
    Singaporeans for promoting development аnd economic centers leh.

    Sushi Tei оffers fresh sushi and Japanese recipes, cherished bу Singaporeans f᧐r quality fish and shellfish
    ɑnd relaxing dining experiences.

    Why so slow-moving leh, hop օnto Kaizenaire.ⅽom typically f᧐r special discounts
    оne.

    Stop bү my web blog :: chunky lobster promotions (http://urikukaksa.com/bbs/board.php?bo_table=free&wr_id=136873)

Leave a Reply

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