您好,登錄后才能下訂單哦!
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)了如下方法,代碼如下:
注:這是Java正則表達(dá)式去除html標(biāo)簽方法。
private static final String regEx_script = "<script[^>]*?>[\\s\\S]*?<\\/script>"; // 定義script的正則表達(dá)式 private static final String regEx_style = "<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 = "<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)論。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。