摘要: /** * 移除字符串中包含HTML的标签 * * @param content * @return */ public static String removeHTML(String content) { int before = content.indexOf('<'); int behind = content.indexOf('>'); if (before != -1 || behind != -1) { behind += 1; content ... 阅读全文
posted @ 2012-12-13 11:17 Caliven 阅读(262) 评论(0) 推荐(0) 编辑