Remove multiple line breaks (\n) in JavaScript

前端 未结 2 874
深忆病人
深忆病人 2021-01-05 02:57

We have an onboarding form for new employees with multiple newlines (4-5 between lines) that need stripped. I want to get rid of the extra newlines but still space out the

2条回答
  •  轮回少年
    2021-01-05 03:00

    We can tidy up the regex as follows:

    text = text.replace(/[\r\n]{2,}/g, "\n");
    

提交回复
热议问题