中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中正則表達式去除html標簽

發布時間:2020-09-01 07:38:28 來源:腳本之家 閱讀:178 作者:jlon 欄目:編程語言

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:方法僅供參考,供大家一起互相學習,若有不足或者疑問歡迎評論。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汽车| 岱山县| 武鸣县| 沁源县| 临潭县| 永靖县| 富顺县| 许昌县| 云南省| 铁岭县| 宜宾市| 苍南县| 小金县| 东台市| 扶绥县| 常山县| 麻江县| 洛南县| 肇州县| 保康县| 板桥市| 乌兰察布市| 沂水县| 长寿区| 东兰县| 儋州市| 广丰县| 满洲里市| 株洲县| 恩平市| 长顺县| 永州市| 河源市| 营口市| 嵩明县| 邵阳县| 张家川| 奉节县| 衡山县| 航空| 青州市|