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

24,064 responses to “Limit the number of newlines in a string”

  1. ok8386 Avatar

    What’s Going down i am new to this, I stumbled upon this I have found
    It positively helpful and it has helped me out loads. I’m hoping to give
    a contribution & help different customers like its aided
    me. Great job.

  2. Gemstone Silver Jewelry Avatar

    Gemstone 925 Sterling Silver Jewelry Manufacturer, Exporter and Supplier.
    Gemstones Silver Rings, Silver Earrings, Silver pendants, Silver Bracelets,
    Silver Necklaces Wholesale prices.

  3. US lottery courier service Avatar

    What a information of un-ambiguity and preserveness of valuable knowledge
    on the topic of unpredicted emotions.

    Feel free to surf to my web page: US lottery courier service

  4. about Avatar

    This article provides clear idea for the new visitors of blogging,
    that really how to do blogging and site-building.

  5. sports jerseys for sale Avatar

    Save 30% on authentic NFL jerseys, NCAA football jerseys,
    and hockey jerseys at Kyle’s Football Cards on eBay.
    Shop rare sports collectibles, Nike Vapor Limited jerseys, and stitched team gear with fast,
    secure shipping. Use code KYLEFAN30 for limited-time savings on premium sports memorabilia and fan apparel.

  6. Congtogel Avatar

    Do you have a spam problem on this blog; I also am a blogger, and I was wondering your situation;
    we have developed some nice methods and we are looking to exchange techniques with
    others, be sure to shoot me an e-mail if interested.

  7. 555WIN APP Avatar

    Normally I don’t learn post on blogs, but I wish to
    say that this write-up very pressured me to check out and do it!
    Your writing taste has been amazed me. Thanks, quite great article.

  8. https://superlockandkey.com/locksmith/ Avatar

    My brother suggested I might like this website. He was once entirely
    right. This submit truly made my day. You can not believe just how much time I had spent for this info!
    Thank you!

  9. web site Avatar

    My brother suggested I would possibly like this website.
    He was once entirely right. This publish truly made my day.
    You cann’t believe simply how so much time I had spent for this information! Thank you!

  10. US lottery courier service Avatar

    Good post but I was wondering if you could write a litte more on this topic?

    I’d be very thankful if you could elaborate a little bit further.

    Thanks!

    my web-site; US lottery courier service

  11. Adult Toys Avatar

    Keep on working, great job!

  12. customized corporate training Avatar

    It’s difficult to find educated people for this topic, however,
    you sound like you know what you’re talking about! Thanks

    Check out my web-site :: customized corporate training

  13. men's vitality supplement Avatar

    You really make it seem so easy with your presentation but I find this topic to be really something that I think I would never understand.
    It seems too complex and very broad for me.
    I am looking forward for your next post, I’ll try to get the
    hang of it!

    Feel free to visit my blog … men’s vitality supplement

  14. dental implant in irvine Avatar

    Greetings! Very helpful advice within this article!
    It’s the little changes which will make the biggest changes.
    Many thanks for sharing!

    Also visit my blog post … dental implant in irvine

Leave a Reply

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