JavaScript替换所有换行符

时间:2016-08-25 22:12:07

标签: javascript regex

我的Javascript应用程序中有一个字符串,如下所示

 var myMessage = 'Thats the first line<br /> thats the second line<br /> thats the third line.';

现在我尝试将所有<br />替换为\n,我尝试过此命令:

var messageFormatted = myMessage.replace('<br />', ' ');

但在 messageFormatted 中仍有<br />个。我现在的问题是我做错了什么?

0 个答案:

没有答案