Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<p>some text is hrere</p> <pre> <p> some more text is here </p> </pre> <p> some other text is here </p>
在上面的示例字符串中,我想用 tag 替换标签<p> and </p>外的<pre>标签,用. java中这个的正则表达式是什么?<br/><p> and </p><pre>\n
<p> and </p>
<pre>
<br/>
\n
这已经说过很多次了:不要使用正则表达式来操作 HTML。
将您的 HTML 解析为 DOM 树 - 如果它是 XHTML 尤其容易 - 并以这种方式操作它。
不要这样做。