Jquery中文网 www.jquerycn.cn
Jquery中文网 >  脚本编程  >  java  >  正文 java 中正则过滤html标签

java 中正则过滤html标签

发布时间:2017-12-06   编辑:www.jquerycn.cn
jquery中文网为您提供java 中正则过滤html标签等资源,欢迎您收藏本站,我们将为您提供最新的java 中正则过滤html标签资源
文章介绍了一个利用java中的正则表达式来过滤html标签的函数,利用了很多知识有需要参考的同学可以看看。
<table width="620" align="center" border="0" cellpadding="1" cellspacing="1" style="background:#FB7"> <tr> <td width="464" height="27" bgcolor="#FFE7CE"> 代码如下</td> <td width="109" align="center" bgcolor="#FFE7CE" style="cursor:pointer;" onclick="doCopy('copy3762')">复制代码</td> </tr> <tr> <td height="auto" colspan="2" valign="top" bgcolor="#FFFFFF" style="padding:10px;" class="copyclass" id=copy3762>

 

public static String delHtml(String inputString) {
        String htmlStr = inputString; // 含html标签的字符串
        String textStr = "";
        java.util.regex.Pattern p_script;
        java.util.regex.Matcher m_script;
        java.util.regex.Pattern p_html;
        java.util.regex.Matcher m_html;

        try {
            String regEx_html = "<[^>] >"; // 定义HTML标签的正则表达式

            String regEx_script = "<[/s]*?script[^>]*?>[/s/S]*?<[/s]*?//[/s]*?script[/s]*?>"; // 定义script的正则表达式{或<script[^>]*?>[/s/S]*?<//script>

            p_script = Pattern.compile(regEx_script, Pattern.CASE_INSENSITIVE);
            m_script = p_script.matcher(htmlStr);
            htmlStr = m_script.replaceAll(""); // 过滤script标签

            p_html = Pattern.compile(regEx_html, Pattern.CASE_INSENSITIVE);
            m_html = p_html.matcher(htmlStr);
            htmlStr = m_html.replaceAll(""); // 过滤html标签

            textStr = htmlStr;

        } catch (Exception e) {
            System.err.println("Html2Text: " e.getMessage());
        }

        return textStr;// 返回文本字符串
    }

您可能感兴趣的文章:
php正则过滤html特殊字符
php正则过滤html标签、空格、换行符等的代码示例
php利用正则过滤链接、标签,空格,换行符程序
java 中正则过滤html标签
php删除字符串中html标签的函数
java用正则表达式删除html标签几个例子
php用strip_tags完整去除所有html标签的实例分享
php删除html标签及字符串中html标签的代码
c#正则过滤图片标签 asp.net正则过滤的例子
PHP删除HTMl标签的代码

[关闭]