软件编程
位置:首页>> 软件编程>> java编程>> Java 语言实现清除带 html 标签的内容方法

Java 语言实现清除带 html 标签的内容方法

作者:jingxian  发布时间:2021-07-29 23:47:43 

标签:java,清除,html,标签

实例如下:


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("&nbsp;", "");
// 还原HTML
// content = HTMLDecoder.decode(content);
return content;
 }

public static String delHtmlTag(String str){
String newstr = "";
newstr = str.replaceAll("<[.[^>]]*>","");
newstr = newstr.replaceAll("&nbsp;", "");
return newstr;
}
0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com