java 正则去除html中#注释的部分
时间: 2024-05-16 18:17:31 浏览: 73
Java 批量删除html中注释内容的方法
可以使用以下正则表达式去除 HTML 中的注释部分:
```
String html = "<html><!--注释部分--><body><h1>标题</h1><p>正文</p></body></html>";
String regex = "<!--[\\s\\S]*?-->";
String result = html.replaceAll(regex, "");
System.out.println(result);
```
这里的正则表达式 `<!--[\\s\\S]*?-->` 会匹配 `<!--` 开头、`-->` 结尾的注释部分,并将其替换为空字符串。
输出结果为:
```
<html><body><h1>标题</h1><p>正文</p></body></html>
```
阅读全文