前言:
1,replaceAll
2,正則表達式
正文:
1,replaceAll
/** * 去掉字符串里面的html代碼。<br> * 要求數據要規范,比如大於小於號要配套,否則會被集體誤殺。 * * @param content * 內容 * @return 去掉后的內容 */ public static String stripHtml(String content) { // <p>段落替換為換行 content = content.replaceAll("<p .*?>", "\r\n"); // <br><br/>替換為換行 content = content.replaceAll("<br\\s*/?>", "\r\n"); // 去掉其它的<>之間的東西 content = content.replaceAll("\\<.*?>", ""); // 還原HTML // content = HTMLDecoder.decode(content); return content; }
2,正則表達式
import java.util.regex.Matcher; import java.util.regex.Pattern; public class HTMLSpirit{ public static String delHTMLTag(String htmlStr){ String regEx_script = "<script[^>]*?>[\\s\\S]*?<\\/script>"; //定義script的正則表達式 String regEx_style = "<style[^>]*?>[\\s\\S]*?<\\/style>"; //定義style的正則表達式 String regEx_html = "<[^>]+>"; //定義HTML標簽的正則表達式 Pattern p_script = Pattern.compile(regEx_script, Pattern.CASE_INSENSITIVE); Matcher m_script = p_script.matcher(htmlStr); htmlStr = m_script.replaceAll(""); //過濾script標簽 Pattern p_style = Pattern.compile(regEx_style, Pattern.CASE_INSENSITIVE); Matcher m_style = p_style.matcher(htmlStr); htmlStr = m_style.replaceAll(""); //過濾style標簽 Pattern p_html = Pattern.compile(regEx_html, Pattern.CASE_INSENSITIVE); Matcher m_html = p_html.matcher(htmlStr); htmlStr=m_html.replaceAll(""); //過濾html標簽 return htmlStr.trim(); //返回文本字符串 } }
參考博客:
java 去掉html標簽 - 大臉 - 博客園
https://www.cnblogs.com/newsouls/p/3995394.html
