java去除字符串的html标签详解编程语言

//方法一 
public String stripHtml(String content) {  
    // <p>段落替换为换行  
    content = content.replaceAll("<p .*?>", "/r/n");  
    // <br><br/>替换为换行  
    content = content.replaceAll("<br//s*/?>", "/r/n");  
    // 去掉其它的<>之间的东西  
    content = content.replaceAll("//<.*?>", "");  
    // 去掉空格     
    content = content.replaceAll(" ", "");  
    return content;    
} 
 
//方法二 
public static String delHtmlTag(String str){  
    String newstr = "";  
    newstr = str.replaceAll("<[.[^>]]*>",""); 
    newstr = newstr.replaceAll(" ", "");  
    return newstr; 
}

 

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/16025.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论