public static String htmlToStr(String htmlStr){ String result = ""; boolean flag = true; if(htmlStr==null){ return null; } htmlStr = htmlStr.replace("\"", ""); //去掉引号 char[] a = htmlStr.toCharArray(); int length=a.length; for(int i=0;i<length;i++){ if(a[i]=='<'){ flag=false; continue; } if(a[i]=='>'){ flag=true; continue; } if(flag==true){ result+=a[i]; } } return result.toString(); }
For more java to remove html tags, please pay attention to the PHP Chinese website for related articles about regular expressions that must first remove double quotes!