国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Java > 正文

java 過濾html標簽

2019-11-06 06:10:12
字體:
來源:轉載
供稿:網友

去除html標簽,包括script、style,以及html字符&nbsp等

public static String delHTMLTag(String htmlStr){ String regEx_script="<script[^>]*?>[//s//S]*?<///script>"; //定義script的正則表達式 String regEx_style="<style[^>]*?>[//s//S]*?<///style>"; //定義style的正則表達式 String regEx_html="<[^>]+>"; //定義HTML標簽的正則表達式 String regEx_blank="&nbsp;|&quot;|&amp;|&lt;|&gt;";//定義html字符&nbsp;|&quot;|&amp;|&lt;|&gt; 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_blank=Pattern.compile(regEx_blank,Pattern.CASE_INSENSITIVE); Matcher m_blank=p_blank.matcher(htmlStr); htmlStr=m_blank.replaceAll(""); //過濾;nbsp return htmlStr.trim(); //返回文本字符串 }
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 土默特右旗| 西充县| 大英县| 五家渠市| 和龙市| 治县。| 辽宁省| 伊川县| 石泉县| 舟山市| 全州县| 东辽县| 敦化市| 扎鲁特旗| 建始县| 湟中县| 揭阳市| 黔东| 娄烦县| 横峰县| 保定市| 黄浦区| 石台县| 乌拉特前旗| 惠来县| 高淳县| 炉霍县| 南汇区| 都匀市| 临城县| 商都县| 永州市| 中西区| 商河县| 鹿邑县| 邹平县| 惠州市| 庆元县| 舟曲县| 涪陵区| 大同县|