替换javascript中的换行符

发布于 2024-10-31 23:16:21 字数 272 浏览 1 评论 0原文

我正在尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

决绝 2024-11-07 23:16:21

试试这个:

myString = myString.replace(/[\r\n]/g, "<br />");

更新
正如 Pointy 在下面的评论中所说,这将用两个
替换 \r\n 序列,正确的正则表达式应该是:

myString = myString.replace(/\r?\n/g, "<br />");

Try this:

myString = myString.replace(/[\r\n]/g, "<br />");

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:

myString = myString.replace(/\r?\n/g, "<br />");
尘世孤行 2024-11-07 23:16:21

CSS:

 white-space: pre-wrap;

是一种更有效的方法。

CSS:

 white-space: pre-wrap;

Is a far more eficient method.

故事↓在人 2024-11-07 23:16:21

尝试替换(/\r\n|\n/, '
')

try replace(/\r\n|\n/, '<br />')

半山落雨半山空 2024-11-07 23:16:21

这对我有用:

str = str.replace(/\\n|\\r\\n|\\r/g, '<br/>');

使用双斜杠

This worked for me:

str = str.replace(/\\n|\\r\\n|\\r/g, '<br/>');

Using double slash

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文