gpt4 book ai didi

javascript - 如何用 HTML DOM 替换替换字符串

转载 作者:行者123 更新时间:2023-12-04 07:27:51 25 4
gpt4 key购买 nike

我的字符串

xxx
<div>
test test
</div>
</div>
<h2> Details</h2>
xxx
我想将整个 HTML 字符串替换为
xxx
<div>
test test
</div>
<h2> Details</h2>
xxx
所以这意味着没有这个额外的“ </div>
我已经尝试但不起作用:
result = result.replace('</div>\n<h2> Details</h2>', '<h2> Details</h2>');
或使用正则表达式但随后“测试测试”也被删除
const excessDiv = /<\/div>(?:.|\n|\r)+?<h2> Details<\/h2>/;
result = result.replace(excessDiv, '</div><h2> Details</h2>');
有人可以建议我吗?

最佳答案

干得好;

    let htmlStr = `xxx
<div>
test test
</div>
</div>
<h2> Details</h2>
xxx`

let modStr = htmlStr.replace(`</div>
<h2> Details</h2>`, "<h2> Details</h2>")

console.log(modStr)

重要的部分是我如何写 replace代码的一部分。

关于javascript - 如何用 HTML DOM 替换替换字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68127975/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com