使用正則表達式刪除HTML標籤。 html
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標記的方法
Java裏面去掉網頁裏的HTML標記的方法:
/**
* 去掉字符串裏面的html代碼。<br>
* 要求數據要規範,好比大於小於號要配套,不然會被集體誤殺。
*
* @param content
* 內容
* @return 去掉後的內容
*/ java
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; }