gpt4 book ai didi

java - 如何替换字符串中的不同文本

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

我以字符串形式呈现了这个 HTML 部分。

<h1 id="Table1">Hello And welcome</h1>
<h1 id="Table2">Hello And welcome</h1>
<h1 id="Table3">Hello And welcome</h1>
<h1 id="Table4">Hello And welcome</h1>

我正在尝试从上述字符串中删除 id="*" 属性。所以最终的字符串应该只包含这个:

<h1>Hello And welcome</h1>
<h1>Hello And welcome</h1>
<h1>Hello And welcome</h1>
<h1>Hello And welcome</h1>

我正在使用 replaceAll() 方法,但无法构造正则表达式来执行此操作。请指教。

最佳答案

String result = subject.replaceAll("<h1 id=\"[^\"]*\">", "<h1>");

应该适用于这个简单的场景。

关于java - 如何替换字符串中的不同文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14251986/

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