Java去掉html标签
<span style="font-family: 宋体; font-size: 10.5pt;"><o:p></o:p></span></p><p class="MsoNormal" style="margin: 0pt 0pt 0.0001pt; text-align: justify; font-family: Calibri; font-size: 10.5pt; text-indent: 21pt; line-height: 21px;"><span style="font-family: 宋体; font-size: 10.5pt;">欢迎咨询、合作!</span><span style="font-family: 宋体; font-size: 10.5pt;"><o:p></o:p></span></p>
像去掉这种标签可以使用正则:
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(); //返回文本字符串
}
也可以使用Java的String方法的replaceAll()方法:
String string = "<span style="font-family: 宋体; font-size: 10.5pt;"><o:p></o:p></span></p><p class="MsoNormal" style="margin: 0pt 0pt 0.0001pt; text-align: justify; font-family: Calibri; font-size: 10.5pt; text-indent: 21pt; line-height: 21px;"><span style="font-family: 宋体; font-size: 10.5pt;">欢迎咨询、合作!</span><span style="font-family: 宋体; font-size: 10.5pt;"><o:p></o:p></span></p>"
string=string.replaceAll("\\<.*?>", "");//去掉所有的标签
string=string.replaceAll(" ", "");//去掉前端的空格
System.out.println(string);
如有特殊的需求,比如换行之类的可以添加以下内容:
// <p>段落替换为换行
content = content.replaceAll("<p .*?>", "\r\n");
// <br><br/>替换为换行
content = content.replaceAll("<br\\s*/?>", "\r\n");
来看最终的效果:
结束!!!又是继续摸鱼的一天。