替换javascript中的换行符
我正在尝试将 json 对象中的 \r
或 \n
字符实例替换为
以便在网站上显示。
我尝试过:
myString = myString.replace("\\r?\\n", "<br />");
但这似乎没有任何作用。当我用其他东西替换正则表达式时(例如 "a"
,替换按预期工作)。有什么想法为什么这不适用于换行符?
I am trying to replaces instances of \r
or \n
characters in my json object with <br />
for display on a website.
I tried:
myString = myString.replace("\\r?\\n", "<br />");
But this doesn't seem to do anything. When I replace the regex with something else (like "a"
for instance, the replace works as expected). Any ideas why this isn't working for the newline chars?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:
更新:
正如 Pointy 在下面的评论中所说,这将用两个
替换\r\n
序列,正确的正则表达式应该是:Try this:
Update:
As told by Pointy on the comment below, this would replace a squence of
\r\n
with two<br />
, the correct regex should be:CSS:
是一种更有效的方法。
CSS:
Is a far more eficient method.
尝试替换(/\r\n|\n/, '
')
try
replace(/\r\n|\n/, '<br />')
这对我有用:
使用双斜杠
This worked for me:
Using double slash