歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Java去除html標簽的正則表達

Java去除html標簽的正則表達:

  1. public static String replaceHtml(String html){  
  2.         String regEx="<.+?>"//表示標簽   
  3.         Pattern p=Pattern.compile(regEx);  
  4.         Matcher m=p.matcher(html);  
  5.         String s=m.replaceAll("");  
  6.         return s;  
  7.     }  
Copyright © Linux教程網 All Rights Reserved