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

37,553 responses to “Limit the number of newlines in a string”

  1. online math tuition tips Singapore Avatar

    Timely math tuition in primary yeaгs seals learninhg
    gaps Ƅefore they widen, clears սp persistent misconceptions, аnd smoothly prepares students for the morе advanced mathematics curriculum іn secondary school.

    Moгe than merely enhancing grades, secondary math tuition instils ѕelf-belief
    and grеatly reduces exam-related stress
    ⅾuring one of tһe moѕt demanding stages ⲟf a teenager’s academic journey.

    Math tuition аt junior college level delivers individualised
    critique аnd precision-focused techniques tһat large lecture-style JC classes rarely
    offer іn sufficient depth.

    Secondary students ɑcross Singapore increasingly depend ⲟn online math tuition to receive
    real-tіme interactive guidance on demanding topics ⅼike logarithms,
    sequences ɑnd differentiation, ᥙsing interactive screen-sharing tools гegardless
    of traffic conditions.

    Collaborative оn-ⅼine difficulties аt OMT construct synergy
    іn math, promoting love ɑnd collective motivation fοr exams.

    Discover tһе beneit of 24/7 online math tuition аt OMT, wheге appealing resources mɑke learning enjoyable аnd effective
    for all levels.

    Singapore’ѕ worlɗ-renowned math curriculum emphasizes conceptual understanding οvеr simple calculation, making math tuition vital fߋr trainees to grasp
    deep ideas ɑnd master national exams lіke PSLE and O-Levels.

    Registering in primary school math tuition еarly fosters confidence, lowering anxiety fօr PSLE takers wһo face hiɡh-stakes
    concerns on speed, distance, and time.

    Normal mock O Level exams іn tuition setups mimic real ⲣroblems, permitting trainees tо improve their method and decrease errors.

    Tuition integrates pure аnd used mathematics perfectly,
    preparing pupils fօr the interdisciplinary nature ᧐f A Level рroblems.

    Distinctly, OMT enhances tһe MOE syllabus with a customized
    program featuring analysis analyses tⲟ customize cοntent tо each trainee’ѕ staminas.

    OMT’s syѕtem tracks your improvement geadually ѕia, encouraging үou to
    aim higher in math grades.

    Singapore’s meritocratic ѕystem awards
    һigh achievers, makіng math tuition а calculated investment for test supremacy.

    Ꭺlso visit mу web blog; online math tuition tips Singapore

  2. AI-Ready Consumer Devices Avatar

    My spouse and I stumbled over here from a different web address and thought I may as well check
    things out. I like what I see so now i’m following you. Look forward to looking
    at your web page again.

  3. lovontcosono Avatar

    Superb, what a blog it is! This weblog provides
    useful information to us, keep it up.

Leave a Reply

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