我正在使用此插件来解析bbcode bbcodeparser
但它没有将\n
转换为<br/>
的功能。
我尝试添加这个:
replace(/\r?\n|\r/g, '<br>')
......但它不起作用。
如何实现换行功能?
答案 0 :(得分:82)
如果您这样做是为了在html中显示新行并返回运输,那么您不需要明确地执行此操作。你可以通过设置 white-space 属性 pre-line 值在css中完成。
<span style="white-space: pre-line">@Model.CommentText</span>
答案 1 :(得分:2)
实际上,浏览器不会将\r\n
视为使用的PHP nl2br中的真实新行,而在Javascript中,您可以使用nl2br()
等效的函数。
function nl2br (str, is_xhtml) {
var breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br />' : '<br>';
return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1' + breakTag + '$2');}
答案 2 :(得分:1)
这对我有用
const regex = /\\n|\\r\\n|\\n\\r|\\r/g;
string.replace(regex, '<br>');
答案 3 :(得分:0)