您好,登錄后才能下訂單哦!
Java中正則表達式去除html的標簽,主要目的更精確的顯示內容,比如前一段時間在做類似于博客中發布文章功能,當編輯器中輸入內容后會將樣式標簽也傳入后臺并且保存數據庫,但是在顯示摘要的時候,比如顯示正文的前50字作為摘要,那么這時需要去除所有html標簽,然后在截取50字,所以就通過了Java正則表達式實現了如下方法,代碼如下:
注:這是Java正則表達式去除html標簽方法。
private static final String regEx_script = "<script[^>]*?>[\\s\\S]*?<\\/script>"; // 定義script的正則表達式 private static final String regEx_style = "<style[^>]*?>[\\s\\S]*?<\\/style>"; // 定義style的正則表達式 private static final String regEx_html = "<[^>]+>"; // 定義HTML標簽的正則表達式 private static final String regEx_space = "\\s*|\t|\r|\n";// 定義空格回車換行符 private static final String regEx_w = "<w[^>]*?>[\\s\\S]*?<\\/w[^>]*?>";//定義所有w標簽 /** * @param htmlStr * @return 刪除Html標簽 * @author LongJin */ public static String delHTMLTag(String htmlStr) { Pattern p_w = Pattern.compile(regEx_w, Pattern.CASE_INSENSITIVE); Matcher m_w = p_w.matcher(htmlStr); htmlStr = m_w.replaceAll(""); // 過濾script標簽 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標簽 Pattern p_space = Pattern.compile(regEx_space, Pattern.CASE_INSENSITIVE); Matcher m_space = p_space.matcher(htmlStr); htmlStr = m_space.replaceAll(""); // 過濾空格回車標簽 htmlStr = htmlStr.replaceAll(" ", ""); //過濾 return htmlStr.trim(); // 返回文本字符串 }
ps:方法僅供參考,供大家一起互相學習,若有不足或者疑問歡迎評論。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。