欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2024-03-06 17:00:20
实例如下: public string striphtml(string content) { //

段落替换为换行 content =...

实例如下:

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;
}

以上这篇java 语言实现清除带 html 标签的内容方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。