【Java】【31】去掉字符串中的html標籤

前言:html

1,replaceAlljava

2,正則表達式正則表達式

正文:spa

1,replaceAllcode

/** 
* 去掉字符串裏面的html代碼。<br> 
* 要求數據要規範,好比大於小於號要配套,不然會被集體誤殺。 
* 
* @param content 
* 內容 
* @return 去掉後的內容 
*/ 
public static String stripHtml(String content) { 
    // <p>段落替換爲換行 
    content = content.replaceAll("<p .*?>", "\r\n"); 
    // <br><br/>替換爲換行 
    content = content.replaceAll("<br\\s*/?>", "\r\n"); 
    // 去掉其它的<>之間的東西 
    content = content.replaceAll("\\<.*?>", ""); 
    // 還原HTML 
    // content = HTMLDecoder.decode(content); 
    return content; 
}

2,正則表達式htm

import java.util.regex.Matcher; 
import java.util.regex.Pattern; 

public class HTMLSpirit{ 
    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標籤的正則表達式 
         
        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(); //返回文本字符串 
    } 
}

參考博客:blog

java 去掉html標籤 - 大臉 - 博客園
http://www.javashuo.com/article/p-vjnkgypq-gu.htmlip

相關文章
相關標籤/搜索