亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

宁乡县| 海丰县| 汨罗市| 河津市| 廉江市| 那曲县| 开远市| 大余县| 航空| 兰考县| 蛟河市| 吉林市| 监利县| 顺义区| 正蓝旗| 阜新| 福鼎市| 堆龙德庆县| 博爱县| 乃东县| 麟游县| 大姚县| 旬阳县| 凤庆县| 沙坪坝区| 哈密市| 庆城县| 盐边县| 南部县| 南平市| 沾化县| 鄂伦春自治旗| 濉溪县| 鸡泽县| 万源市| 青浦区| 长泰县| 勐海县| 石景山区| 惠来县| 科技|