我有这个 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()
方法,但无法构建正则表达式来执行此操作。请指教。