最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Replacing more than two line breaks with regex - Stack Overflow

programmeradmin1浏览0评论

I want to search my textarea for "\n" line breaks but I want two line spaces to be the maximum.

What formula can I use in this regex so that it looks for anything over three \n's in a row ("\n\n\n") and replaces it with just one <br> ?

this.replace(new RegExp('\n', 'gim') , '<br/>');

I want to search my textarea for "\n" line breaks but I want two line spaces to be the maximum.

What formula can I use in this regex so that it looks for anything over three \n's in a row ("\n\n\n") and replaces it with just one <br> ?

this.replace(new RegExp('\n', 'gim') , '<br/>');
Share Improve this question edited Nov 24, 2011 at 9:24 lucapette 20.7k6 gold badges67 silver badges59 bronze badges asked Nov 24, 2011 at 8:02 TimTim 7,0568 gold badges40 silver badges57 bronze badges 0
Add a ment  | 

4 Answers 4

Reset to default 9
this.replace(new RegExp('(\n){3,}', 'gim') , '<br/>');

This will replace 3 or more \n's with a br, make that 4 if you want 4 or more.

var newString = "some \n\n\n\n\n string".replace(/\n{3,}/g, '<br/>');

alert(newString);

Did you try this?

this.replace(new RegExp('\\n+', 'gim') , '<br/>');

You can avoid using RegExp with:

this.replace(/\n+/g, '<br />')

this.replace(/[\n]{3,}/g,'<br/>');
发布评论

评论列表(0)

  1. 暂无评论