提问人:Anna 提问时间:10/23/2021 更新时间:10/23/2021 访问量:794
如何在sanitize-html JavaScript中将<br />标签名称替换为空格?
How to replace <br /> tag name to white space in sanitize-html JavaScript?
问:
我有一个HTML字符串,例如:
"<p>Hello world!<br/>I am here</p>"
我想得到替换后的输出结果:
"<p>Hello world! I am here</p>"
如何使用sanitize-html包做到这一点?
答:
-1赞
NodeJSDeveloper
10/23/2021
#1
来源: replaceAll
const result = 'lorem<br />ipsum<br />hello'.replaceAll('<br />', ' ');
// result = 'lorem ipsum hello';
评论
0赞
Doug Chamberlain
7/23/2022
OP 专门请求使用特定库的方法。
评论
sanitize-html
sanitize