实例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
public String stripHtml(String content) {
// <p>段落替换为换行
content = content.replaceAll( "<p .*?>" , "\r\n" );
// <br><br/>替换为换行
content = content.replaceAll( "<br\\s*/?>" , "\r\n" );
// 去掉其它的<>之间的东西
content = content.replaceAll( "\\<.*?>" , "" );
// 去掉空格
content = content.replaceAll( " " , "" );
// 还原HTML
// content = HTMLDecoder.decode(content);
return content;
}
public static String delHtmlTag(String str){
String newstr = "" ;
newstr = str.replaceAll( "<[.[^>]]*>" , "" );
newstr = newstr.replaceAll( " " , "" );
return newstr;
}
|
以上这篇html">Java 语言实现清除带 html 标签的内容方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。