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 标签的内容方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
Java 语言实现清除带 html 标签的内容方法
-
Java 获取Html文本中的img标签下src中的内容方法
-
Java 获取Html文本中的img标签下src中的内容方法
-
JAVA过滤标签实现将html内容转换为文本的方法示例
-
JAVA过滤标签实现将html内容转换为文本的方法示例
-
python的xpath获取div标签内html内容,实现innerhtml功能的方法
-
python的xpath获取div标签内html内容,实现innerhtml功能的方法
-
2种PHP实现网页内容html标签补全和过滤的方法
-
2种PHP实现网页内容html标签补全和过滤的方法
-
PHP实现网页内容html标签补全和过滤的方法