WEB开发网
开发学院软件开发Java java去除html标签的正则表达 阅读

java去除html标签的正则表达

 2012-08-13 10:01:16 来源:WEB开发网   
核心提示:public static String replaceHtml(String html){ String regEx="<.+?>"; //表示标签 Pattern p=Pattern.compile(regEx); Matcher m=p.matcher(html)
public static String replaceHtml(String html){
	    String regEx="<.+?>"; //表示标签
	    Pattern p=Pattern.compile(regEx);
	    Matcher m=p.matcher(html);
	    String s=m.replaceAll("");
	    return s;
	}

Tags:java 去除 html

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接