标签:
java代码
String str = “字符串”.replaceAll("\\&[a-zA-Z]{1,10};", "").replaceAll("<[^>]*>", "").replaceAll("[(/>)<]", "");
sql代码
SUBSTR(REGEXP_REPLACE(字段,‘(\<[^\>]+\>)|(& )|(\s)‘),0,30)
取出HTML标记中内容
原文地址:http://www.cnblogs.com/chai-blogs/p/5291072.html