博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA去除HTML标签
阅读量:6763 次
发布时间:2019-06-26

本文共 944 字,大约阅读时间需要 3 分钟。

public static String delHTMLTag(String htmlStr){         String regEx_script="
]*?>[\\s\\S]*?<\\/script>"; //定义script的正则表达式 String regEx_style="
]*?>[\\s\\S]*?<\\/style>"; //定义style的正则表达式 String regEx_html="<[^>]+>"; //定义HTML标签的正则表达式 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标签 return htmlStr.trim(); //返回文本字符串 }

转载于:https://www.cnblogs.com/zwliu/p/8398575.html

你可能感兴趣的文章