真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java中正則表達(dá)式去除html標(biāo)簽

Java中正則表達(dá)式去除html的標(biāo)簽,主要目的更精確的顯示內(nèi)容,比如前一段時(shí)間在做類(lèi)似于博客中發(fā)布文章功能,當(dāng)編輯器中輸入內(nèi)容后會(huì)將樣式標(biāo)簽也傳入后臺(tái)并且保存數(shù)據(jù)庫(kù),但是在顯示摘要的時(shí)候,比如顯示正文的前50字作為摘要,那么這時(shí)需要去除所有html標(biāo)簽,然后在截取50字,所以就通過(guò)了Java正則表達(dá)式實(shí)現(xiàn)了如下方法,代碼如下:

我們提供的服務(wù)有:成都網(wǎng)站制作、做網(wǎng)站、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、金城江ssl等。為超過(guò)千家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢(xún)和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的金城江網(wǎng)站制作公司

    注:這是Java正則表達(dá)式去除html標(biāo)簽方法。

private static final String regEx_script = "]*?>[\\s\\S]*?<\\/script>"; // 定義script的正則表達(dá)式
  private static final String regEx_style = "]*?>[\\s\\S]*?<\\/style>"; // 定義style的正則表達(dá)式
  private static final String regEx_html = "<[^>]+>"; // 定義HTML標(biāo)簽的正則表達(dá)式
  private static final String regEx_space = "\\s*|\t|\r|\n";// 定義空格回車(chē)換行符
  private static final String regEx_w = "]*?>[\\s\\S]*?<\\/w[^>]*?>";//定義所有w標(biāo)簽
/**
   * @param htmlStr
   * @return 刪除Html標(biāo)簽
   * @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(""); // 過(guò)濾script標(biāo)簽
    Pattern p_script = Pattern.compile(regEx_script, Pattern.CASE_INSENSITIVE);
    Matcher m_script = p_script.matcher(htmlStr);
    htmlStr = m_script.replaceAll(""); // 過(guò)濾script標(biāo)簽
    Pattern p_style = Pattern.compile(regEx_style, Pattern.CASE_INSENSITIVE);
    Matcher m_style = p_style.matcher(htmlStr);
    htmlStr = m_style.replaceAll(""); // 過(guò)濾style標(biāo)簽
    Pattern p_html = Pattern.compile(regEx_html, Pattern.CASE_INSENSITIVE);
    Matcher m_html = p_html.matcher(htmlStr);
    htmlStr = m_html.replaceAll(""); // 過(guò)濾html標(biāo)簽
    Pattern p_space = Pattern.compile(regEx_space, Pattern.CASE_INSENSITIVE);
    Matcher m_space = p_space.matcher(htmlStr);
    htmlStr = m_space.replaceAll(""); // 過(guò)濾空格回車(chē)標(biāo)簽
    htmlStr = htmlStr.replaceAll(" ", ""); //過(guò)濾 
    return htmlStr.trim(); // 返回文本字符串
  }

ps:方法僅供參考,供大家一起互相學(xué)習(xí),若有不足或者疑問(wèn)歡迎評(píng)論。


文章題目:Java中正則表達(dá)式去除html標(biāo)簽
轉(zhuǎn)載注明:http://weahome.cn/article/ijdipd.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部