摘要:
/** * 把文本里面结尾的切割掉 * @param text * @return */ public static String cutOutPrefixImg(String text){ String regex = "]*>"; return text.replaceAll(regex, ""); } 阅读全文
摘要:
/** * 计算关键字在文本中出现的次数 * @param text * @param key * @return */ public static int count(String text, String key) { int count = 0, start = 0; while ((start = text.indexOf(key, start)) >... 阅读全文